c# – 转换泛型和泛型类型

前端之家收集整理的这篇文章主要介绍了c# – 转换泛型和泛型类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
考虑一下,我有以下3个类/接口:
class MyClass<T> { }

interface IMyInterface { }

class Derived : IMyInterface { }

我希望能够投射一个MyClass< Derived>进入MyClass< IMyInterface>或反之亦然:

MyClass<Derived> a = new MyClass<Derived>();
MyClass<IMyInterface> b = (MyClass<IMyInterface>)a;

但是如果我尝试,我会遇到编译错误

Cannot convert type 'MyClass<Derived>' to 'MyClass<IMyInterface>'

我确信有一个很好的理由我不能这样做,但我想不出一个.

至于为什么我想这样做 – 我想象的场景是你理想地想要使用MyClass< Derived>的实例的场景.为了避免许多讨厌的强制转换,你需要将你的实例传递给接受MyClass< IMyInterface>的接口.

所以我的问题是双重的:

>为什么我不能在这两种类型之间施放?
>有没有办法保持使用MyClass< Derived>实例的好处?同时仍然可以将其转换为MyClass< IMyInterface>?

解决方法

这不起作用,因为C#仅支持接口和委托的类型参数的协方差.如果你的类型参数仅存在于输出位置(即你只从类中返回它的实例而不接受它作为参数),你可以创建一个这样的接口:
interface IClass<out T> { }
class MyClass<T> : IClass<T> { }

这将允许你这样做:

IClass<Derived> a = new MyClass<Derived>();
IClass<IMyInterface> b = a;

老实说,这与你将要获得的一样接近,这需要C#4编译器才能工作.

原文链接:https://www.f2er.com/csharp/244974.html

猜你在找的C#相关文章