class BaseItem { }
class DerivedItem : BaseItem { }
interface IInterface<T> where T is BaseItem { }
class RealizedInterface<T> : IInterface<T> { }
RealizedInterface<BaseItem> rb;
RealizedInterface<DerivedItem> rd = new RealizedInterface<DerivedItem>;
有没有什么方法可以投射,如下一行所示:
rb = rd;
谁能告诉我如何rd
投到rb
?
其实BaseItem本身也是一个泛化类但是为了简单的问题,没有写出来。class BaseItem<U,K> / DerivedItem<U,K>
对于那些能够理解我面临的真正问题的人来说。
IShape<IBaseShape<long>, long> shape;
这是一个声明的对象
IShape<ITriangle<long>, long> triangle =new Shape<ITriangle<long>,long>(); //Shape derived from IShape
shape = triangle; //here is the problem.
其中 ITriangle 派生自 IBaseShape。我真的很感激任何帮助。
结果:我决定不实现 out 关键字。就我而言,它并没有带来太多价值(这是一个持续数月的项目,到处都是仿制药)。具体来说,如果您考虑在带有in关键字的接口和带有out关键字的getter中实现 setter ,再加上在使用 out 关键字装饰的接口中使用泛型所产生的强制转换问题让我三思而后行。总而言之,如果您从头开始使用它们可能会很有用,否则可能会带来比您想象的更多的问题。