我一直在尝试以下
interface IUIntegral : IEquatable<Byte>, IEquatable<UInt16>, IEquatable<UInt32>, IEquatable<UInt64> { }
class Counter<T> where T : IUIntegral {
T _value;
}
使用此调用代码
Counter<UInt32> foo = null;
但是我得到了这个编译错误
Error 1 The type 'uint' cannot be used as type parameter 'T' in the generic type or method 'Test.Counter<T>'. There is no boxing conversion from 'uint' to 'Test.IUIntegral'.
答案 0 :(得分:5)
tldr; 此方法不起作用。
C#使用nominative type system(类型由名称确定)和不 a structural type system(由数据/操作确定的类型)。
unit32
和IUIntegral
无关:即使它们共享相同的结构。
(他们不管,uint32
不符合IEquatable<byte>
。)
如果类型需要与自身相等,可以通过引用类型限制中的类型来完成:
class Counter<T> where T : IEquatable<T> {
T _value;
}