English 中文(简体)
我可以指定C#类型的参数只能是接口类型吗?
原标题:Can I dictate that a C# type parameter must only be an interface type?

我想实现一个通用的C#类,大致如下所示:

abstract class Foobar<T> : AbstractBase, T
{ ... }

这失败了,因为C#只允许基类之后的类型成为接口,所以接下来我尝试这样做:

abstract class Foobar<T> : AbstractBase, T where T : interface
{ ... }

但后来我发现C#不允许这种形式的类型约束。仅允许其中T:struct中T:class

如何规定类型参数只能是接口类型?

问题回答

基本上,你不能。

您可以对特定接口进行约束,但不能对所有接口进行通用约束。因此,例如,您可以约束到IEnumerable,但不能约束任何接口。

你需要这个干什么?

该代码的真正问题在于您是从类型参数继承的。

正在尝试编译

abstract class Foobar<T> : T { ... }

将仍然失败,返回:error CS0689:无法从T派生,因为它是一个类型参数。

我认为这是完全合理的,至少在抽象类的情况下是这样,我也想要这个功能,但c#编译器不允许你这样做。

我认为您误解了的含义,其中T:struct中T:class

通用类型约束类似这意味着T必须分别是值类型引用类型

然而,接口的目的是定义契约,与值类型和引用类型语义相比,这是一个完全不同的概念。

因此,像<code>中T:接口</code>这样的限制是没有意义的。

如果你想了解更多,我建议你阅读关于类型约束的C#编程指南:

类型参数的约束(C#编程指南)

你不能用简单的语言表达。

这失败了,因为C#只允许基类之后的类型成为接口

这种限制是由于C#中缺乏多重继承。多重继承可以通过使用接口来近似,因为重写方法是显式的。同样,一个类只能扩展另一个类,但可以实现多个接口。这里的技巧是实现类必须定义方法的主体,这样实现就特定于调用哪个方法。

使用where来限制T可以应用于一个类或多个接口。不能将范围限制为几个类。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...