5

我正在尝试学习如何使用 c# 创建泛型类。有人可以解释为什么我在运行这个程序时会出现编译错误。

我创建了 IZooAnimal 界面。所有的动物园动物都会实现这个接口。

public interface IZooAnimal
{
    string Id { get; set; }
}

public class Lion : IZooAnimal
{
    string Id { get; set; }
}

public class Zebra : IZooAnimal
{
    public string Id { get; set; }
}

ZooCage 将容纳相同类型的动物

public class ZooCage<T> where T : IZooAnimal
{
    public IList<T> Animals { get; set; }
}

动物园班有笼子

public class Zoo
{
    public IList<ZooCage<IZooAnimal>> ZooCages { get; set; }
}

使用类的程序

class Program
{
    static void Main(string[] args)
    {
        var lion = new Lion();
        var lionCage = new ZooCage<Lion>();
        lionCage.Animals = new List<Lion>();
        lionCage.Animals.Add(lion);

        var zebra = new Zebra();
        var zebraCage = new ZooCage<Zebra>();
        zebraCage.Animals = new List<Zebra>();
        zebraCage.Animals.Add(zebra);

        var zoo = new Zoo();
        zoo.ZooCages = new List<ZooCage<IZooAnimal>>();

       zoo.ZooCages.Add(lionCage);
    }
}

编译时出现以下错误:错误 2 参数 1:无法从 ' ConsoleApplication2.ZooCage<ConsoleApplication2.Lion>' 转换为 ' ConsoleApplication2.ZooCage<ConsoleApplication2.IZooAnimal>'

为了使我的程序运行,我必须做哪些更改?

4

3 回答 3

4

@DanielMann 的回答非常好,但是有一个缺点:原来的IList界面不能和ICage界面一起使用。相反,ICage 必须公开一个 ReadOnlyCollection,并公开一个名为 CageAnimal 的新方法。

我还使用类似的方法重新编写了代码。我的ICage实现要弱得多,但它允许您在内部坚持IList语义。

public interface IZooAnimal
{
    string Id { get; set; }
}

public class Lion : IZooAnimal
{
    public string Id { get; set; }
}

public class Zebra : IZooAnimal
{
    public string Id { get; set; }
}

public interface ICage
{
    IEnumerable<IZooAnimal> WeaklyTypedAnimals { get; }
}

public class Cage<T> : ICage where T : IZooAnimal
{
    public IList<T> Animals { get; set; }

    public IEnumerable<IZooAnimal> WeaklyTypedAnimals
    {
        get { return (IEnumerable<IZooAnimal>) Animals; }
    }
}

public class Zoo
{
    public IList<ICage> ZooCages { get; set; }
}

class Program
{
    static void Main(string[] args)
    {
        var lion = new Lion();
        var lionCage = new Cage<Lion>();
        lionCage.Animals = new List<Lion>();
        lionCage.Animals.Add(lion);

        var zebra = new Zebra();
        var zebraCage = new Cage<Zebra>();
        zebraCage.Animals = new List<Zebra>();
        zebraCage.Animals.Add(zebra);

        var zoo = new Zoo();
        zoo.ZooCages = new List<ICage>();

        zoo.ZooCages.Add(lionCage);
    }
}
于 2013-08-24T18:35:42.087 回答
3

您不应该使用实现接口的具体类型来定义列表,而是使用接口:

    var lionCage = new ZooCage<IZooAnimal>();
    lionCage.Animals = new List<IZooAnimal>();

然后您的代码将按预期工作。

初始代码不起作用,因为不允许将具体类型转换为通用类型(正如@default.kramer 指出的协变和逆变)。

我想出的解决方案如下:

// your ZooCage is still generic
public class ZooCage<T>
{   
    // but you declare on creation which type you want to contain only!
    private Type cageType = null;
    public ZooCage(Type iMayContain)
    {
        cageType = iMayContain;
        animals = new List<T>();
    }
    // check on add if the types are compatible
    public void Add(T animal)
    {
        if (animal.GetType() != cageType)
        {
            throw new Exception("Sorry - no matching types! I may contain only " + cageType.ToString());
        }
        animals.Add(animal);
    }
    // should be generic but not visible to outher world!
    private IList<T> animals { get; set; }
}

此代码允许您执行以下操作:

    var lion = new Lion();
    var lionCage = new ZooCage<IZooAnimal>(typeof(Lion));
    lionCage.Add(lion);

    var zebra = new Zebra();
    var zebraCage = new ZooCage<IZooAnimal>(typeof(Zebra));
    zebraCage.Add(zebra);

但它会抛出一个错误:

    zebraCage.Add(lion);

现在动物园可以安全地扩建了。

于 2013-08-24T17:25:14.353 回答
2

由于您想拥有多个笼子,但每种笼子只能容纳一只动物,因此您的模型略有偏差。

我重写了代码如下:

  • IZooAnimal不变。
  • 有一个协变接口ICage可以接受任何类型的IZooAnimal. 这使您可以为每种类型的动物拥有一个强类型的笼子。
  • 然后,我有一个Cage具体的实现ICageCage是通用的,但您可以轻松地将其设为抽象类,然后制作特定于动物的笼子实现。例如,如果您的斑马需要喂草,而您的狮子需要喂肉,您可以专门实现它们的笼子。

这是完整的代码:

public interface IZooAnimal
{
    string Id { get; set; }
}

public interface ICage<out T> where T : IZooAnimal
{
    IReadOnlyCollection<T> Animals { get; }
}

public class Cage<T> : ICage<T> where T: IZooAnimal
{
    private readonly List<T> animals = new List<T>();

    public IReadOnlyCollection<T> Animals
    {
        get
        {
            return animals.AsReadOnly();
        }
    }

    public void CageAnimal(T animal)
    {
        animals.Add(animal);
    }
}

public class Lion : IZooAnimal
{
    public string Id { get; set; }
}

public class Zebra : IZooAnimal
{
    public string Id { get; set; }
}

public class Zoo
{
    public IList<ICage<IZooAnimal>> Cages { get; set; }
}

internal class Program
{

    private static void Main(string[] args)
    {
        var lion = new Lion();
        var zebra = new Zebra();
        var lionCage = new Cage<Lion>();
        lionCage.CageAnimal(lion);

        var zebraCage = new Cage<Zebra>();
        zebraCage.CageAnimal(zebra);

        var zoo = new Zoo();
        zoo.Cages.Add(lionCage);
        zoo.Cages.Add(zebraCage);

    }
}
于 2013-08-24T18:28:48.467 回答