如何指定传递特定接口的类型?
我有一个方法,我想要一个类型但属于某个接口的参数。
例如:
public static ConvertFile(Type fileType)
我可以指定fileType继承IFileConvert。
这可能吗?
I have a method where I want to have a parameter that is a Type, but of a certain interface.
E.g.:
public static ConvertFile(Type fileType)
where I can specify fileType inherits IFileConvert.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
一种选择是泛型:
并调用为:
One option is generics:
and call as:
不,这是不可能的。 但是你可以这样做:
相反。
Nope, it's not possible. However you could do:
instead.
如果你想在编译时强制执行,泛型是唯一的方法:
要在运行时检查,你可以这样做:
If you want to enforce that at compile-time, generics are the only way:
To check at run-time, you can do:
你不能这样做吗:
Can't you just do:
扩展马克的答案。 他是正确的,如果没有泛型,就无法在编译时强制执行此操作。 如果您不能或不想使用泛型,您可以添加运行时检查,如下所示。
Expanding on Marc's answer. He is correct, without generics there is no way to enforce this at compile time. If you can't or don't want to use generics, you can add a runtime check as follows.