如何指定传递特定接口的类型?

发布于 2024-07-14 05:39:42 字数 166 浏览 4 评论 0原文

我有一个方法,我想要一个类型但属于某个接口的参数。

例如:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

云胡 2024-07-21 05:39:42

一种选择是泛型:

public static ConvertFile<T>() where T : IFileConvert
{
     Type type = typeof(T); // if you need it
}

并调用为:

ConvertFile<SomeFileType>();

One option is generics:

public static ConvertFile<T>() where T : IFileConvert
{
     Type type = typeof(T); // if you need it
}

and call as:

ConvertFile<SomeFileType>();
匿名。 2024-07-21 05:39:42

不,这是不可能的。 但是你可以这样做:

public static void ConvertFile<T>() where T : IFileConvert {
   Type fileType = typeof(T);
}

相反。

Nope, it's not possible. However you could do:

public static void ConvertFile<T>() where T : IFileConvert {
   Type fileType = typeof(T);
}

instead.

葵雨 2024-07-21 05:39:42

如果你想在编译时强制执行,泛型是唯一的方法:

public static ConvertFile<T>(T fileType)
    where T : IFileType

要在运行时检查,你可以这样做:

Debug.Assert(typeof(IFileType).IsAssignableFrom(fileType));

If you want to enforce that at compile-time, generics are the only way:

public static ConvertFile<T>(T fileType)
    where T : IFileType

To check at run-time, you can do:

Debug.Assert(typeof(IFileType).IsAssignableFrom(fileType));
人心善变 2024-07-21 05:39:42

你不能这样做吗:

public static ConvertFile(IFileConvert fileType)

Can't you just do:

public static ConvertFile(IFileConvert fileType)
你与昨日 2024-07-21 05:39:42

扩展马克的答案。 他是正确的,如果没有泛型,就无法在编译时强制执行此操作。 如果您不能或不想使用泛型,您可以添加运行时检查,如下所示。

public static void ConvertFile(Type type) {
  if ( !typeof(IFileType).IsAssignableFrom(type)) {
    throw new ArgumentException("type");
  }
  ...
}

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.

public static void ConvertFile(Type type) {
  if ( !typeof(IFileType).IsAssignableFrom(type)) {
    throw new ArgumentException("type");
  }
  ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文