关于 C# 与 Java 中泛型的比较问题
在Java中,我可以用通配符“?”指定泛型。可以创建如下所示的地图:
Map
。
我正在使用 C#,我需要一个 Dictionary
(其中 ? 可以是 int、double、任何类型)。这在 C# 中可能吗?
编辑:
示例:
interface ISomeInterface<out T>{
T Method();
void methodII();
}
class ObjectI : ISomeInterface<int>{
...
}
class ObjectII : ISomeInterface<double>{
...
}
class ObjectIII : ISomeInterface<string>{
....
}
我试图将此对象映射到字典中,例如:
Dictionary<String, ISomeInterface<?>> _objs = new Dictionary<String, ISomeInterface<?>();
_objs.Add("Object1", new ObjectI());
_objs.Add("Object2", new ObjectII());
_objs.Add("Object3", new ObjectII());
foreach(var keyVal in _objs){
Console.WriteLine(keyVal.Method());
}
使用 Assembly 和 Activator.createInstance 在运行时加载实现 ISomeInterface 的对象。在创建时,我不知道对象是否实现了 ISomeInterface
或 ISomeInterface
。
非常感谢任何帮助。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不可以
。但是,如果您使用的是 C# 4,则可以创建
ISomeInterface
协变,以便ISomeInterface
将可转换为ISomeInterface
如果 ISomeInterface 具有采用其类型参数的参数(而不是返回值)的方法,那么这将是完全不可能的,因为它将允许您传递任意对象作为参数。
编辑:在您的具体情况下,最好的解决方案是使
IMyInterface
继承一个单独的非通用IMyInterface
接口并移动所有成员不涉及基本接口的T
。然后您可以使用
Dictionary
并且不会遇到任何麻烦。No.
However, if you're using C# 4, you can make
ISomeInterface
covariant so thatISomeInterface<Anything>
will be convertible toISomeInterface<object>
.If
ISomeInterface
has methods that take parameters of its type parameter (as opposed to return values), this will be completely impossible, since it would then allow you to pass arbitrary objects as the parameters.EDIT: In your specific case, the best solution is to make
IMyInterface<T>
inherit a separate non-genericIMyInterface
interface and move all members that don't involveT
to the base interface.You can then use a
Dictionary<string, IMyInterface>
and you won't have any trouble.可以将类型变量限制为某些类型:
但是,您不能执行以下操作:
There is the possibility to restrict your type variables to certain types:
However, you can't do something like:
对于您所描述的用法,您可以使用一种解决方法,即
IDictionary
:For the usage you're describing, you could use a workaround, with an
IDictionary<string, ISomeInterface>
: