由于我不知道我的问题如何,所以我不能保证,最近没有人问过同样的问题.
我确实注意到,但是有相当多的线程具有相似的标题,但它们似乎与我的问题无关.
我有一个自定义列表类,它实现泛型.
class MyList<T> { public void add(T item) // adds an item to the list { /* code */ } public void add(MyList<T> list) // attaches an existing list to the end of the current one { /* code */ } }
我也有课:
class Apple : Fruit
和
class Banana : Fruit
现在来了相关代码:
MyList<Fruit> fruitList = new MyList<Fruit>(); // fill fruitList fruitList.add(new Apple()); // works,of course fruitList.add(new Banana()); // works as well,of course MyList<Apple> appleList = new MyList<Apple>(); // fill appleList fruitList.add(appleList); // doesn't work. Why?
即使appleList是MyList(Apple),Apple是Fruit,VisualStudio不接受MyList(Apple)作为参数,当MyList(Of Fruit)被询问时.
但是,如果我要这样声明列表:
MyList<object> fruitList = new MyList<object>();
然后一切都行.我做错了什么?
一个答案将非常感谢,谢谢你花时间阅读,即使没有回答.
解决方法
你试图使用
covariance.
.Net只支持接口上的通用方差,这样就不行了.
.Net只支持接口上的通用方差,这样就不行了.
另外,协方差只对不变类型有意义.
如果可以转换MyList< Apple>到MyList< Fruit>之后,您就可以在列表中添加一个橙色,违反了类型的安全性.
相反,您可以使该方法通用:
public void Add<U>(IList<U> list) where U : T