En el siguiente ejemplo de código, tenemos una clase para objetos inmutables que representa una habitación. Norte, Sur, Este y Oeste representan salidas a otras habitaciones.
public sealed class Room
{
public Room(string name, Room northExit, Room southExit, Room eastExit, Room westExit)
{
this.Name = name;
this.North = northExit;
this.South = southExit;
this.East = eastExit;
this.West = westExit;
}
public string Name { get; }
public Room North { get; }
public Room South { get; }
public Room East { get; }
public Room West { get; }
}
Así vemos, esta clase está diseñada con una referencia circular reflexiva. Pero debido a que la clase es inmutable, estoy atrapado con un problema de 'pollo o huevo'. Estoy seguro de que los programadores funcionales experimentados saben cómo lidiar con esto. ¿Cómo se puede manejar en C #?
Estoy tratando de codificar un juego de aventuras basado en texto, pero usando principios de programación funcionales solo por el simple hecho de aprender. ¡Estoy atrapado en este concepto y puedo usar algo de ayuda! Gracias.
ACTUALIZAR:
Aquí hay una implementación funcional basada en la respuesta de Mike Nakis con respecto a la inicialización diferida:
using System;
public sealed class Room
{
private readonly Func<Room> north;
private readonly Func<Room> south;
private readonly Func<Room> east;
private readonly Func<Room> west;
public Room(
string name,
Func<Room> northExit = null,
Func<Room> southExit = null,
Func<Room> eastExit = null,
Func<Room> westExit = null)
{
this.Name = name;
var dummyDelegate = new Func<Room>(() => { return null; });
this.north = northExit ?? dummyDelegate;
this.south = southExit ?? dummyDelegate;
this.east = eastExit ?? dummyDelegate;
this.west = westExit ?? dummyDelegate;
}
public string Name { get; }
public override string ToString()
{
return this.Name;
}
public Room North
{
get { return this.north(); }
}
public Room South
{
get { return this.south(); }
}
public Room East
{
get { return this.east(); }
}
public Room West
{
get { return this.west(); }
}
public static void Main(string[] args)
{
Room kitchen = null;
Room library = null;
kitchen = new Room(
name: "Kitchen",
northExit: () => library
);
library = new Room(
name: "Library",
southExit: () => kitchen
);
Console.WriteLine(
$"The {kitchen} has a northen exit that " +
$"leads to the {kitchen.North}.");
Console.WriteLine(
$"The {library} has a southern exit that " +
$"leads to the {library.South}.");
Console.ReadKey();
}
}
Room
ejemplo también.
type List a = Nil | Cons of a * List a
. Y un árbol binario: type Tree a = Leaf a | Cons of Tree a * Tree a
. Como puede ver, ambos son autorreferenciales (recursivos). Aquí te mostramos cómo definir su habitación: type Room = Nil | Open of {name: string, south: Room, east: Room, north: Room, west: Room}
.
Room
clase y a List
en el Haskell que escribí anteriormente.