作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我有根接口(interface)
public interface IEntity {}
派生接口(interface)和类:
public interface IFruit : IEntity {}
public class Apple : IFruit {}
public class Orange: IFruit {}
而且,无关紧要,但也许其他人没有实现 IFruit
:
public class Computer : IEntity {}
还有一个使用所有这些的通用类:
public class PurchasedItem<T> where T : IFruit
{
public int Qty{get;set;}
public T Item{get;set;}
}
我如何声明一个包含 PurchasedItem<IFruit>
的列表?并使用它?
如果我这样做:
var list = new List<PurchasedItem<IFruit>>();
list.Add(new PurchasedItem<Apple>());
...然后我得到一个错误
Cannot convert from PurchasedItem<Apple> to PurchasedItem<IFruit>
最佳答案
如果您为 PurchaseItem<T>
创建并使用接口(interface),则可以使用协方差
public interface IEntity
{
int Id { get; set; }
}
public interface IFruit : IEntity
{
}
public class Apple : IFruit
{
public int Id { get; set; }
}
public interface IPurchaseItem<out T> where T : IFruit
{
int Qty { get; set; }
T Item { get; } // can't have setter here
}
public class PurchaseItem<T> : IPurchaseItem<T>
where T : IFruit
{
public int Qty { get; set; }
public T Item { get; set; } // setter here no problem
}
class Program
{
static void Main()
{
var applePurchaseItem = new PurchaseItem<Apple>();
var fruitPurchaseItems = new List<IPurchaseItem<IFruit>>();
fruitPurchaseItems.Add( applePurchaseItem );
}
}
关于c# - 将 MyClass<TDescendent> 转换为 MyClass<TAncestor>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37286167/
如果我有根接口(interface) public interface IEntity {} 派生接口(interface)和类: public interface IFruit : IEntity
我是一名优秀的程序员,十分优秀!