多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# where(泛型类型约束)(C# 参考) 在泛型类型定义中,**where** 子句用于指定对下列类型的约束:这些类型可用作泛型声明中定义的类型参数的实参。 例如,可以声明一个泛型类 MyGenericClass,这样,类型参数 T 就可以实现 [IComparable&lt;T&gt;](https://msdn.microsoft.com/zh-CN/library/4d7sx9hd.aspx) 接口: ``` public class MyGenericClass<T> where T:IComparable { } ``` | ![](https://box.kancloud.cn/2016-01-31_56adb62c1380a.jpg) 注意 | | :-- | | 有关查询表达式中的 where 子句的更多信息,请参见 [where 子句(C# 参考)](https://msdn.microsoft.com/zh-CN/library/bb311043.aspx)。 | 除了接口约束,**where** 子句还可以包括基类约束,以指出某个类型必须将指定的类作为基类(或者就是该类本身),才能用作该泛型类型的类型参数。 这样的约束一经使用,就必须出现在该类型参数的所有其他约束之前。 ``` class MyClass<T, U> where T : class where U : struct { } ``` **where** 子句还可以包括构造函数约束。 可以使用 new 运算符创建类型参数的实例;但类型参数为此必须受构造函数约束 **new()** 的约束。 [new() 约束](https://msdn.microsoft.com/zh-CN/library/sd2w2ew5.aspx)可以让编译器知道:提供的任何类型参数都必须具有可访问的无参数(或默认)构造函数。 例如: ``` public class MyGenericClass<T> where T : IComparable, new() { // The following line is not possible without new() constraint: T item = new T(); } ``` **new()** 约束出现在 **where** 子句的最后。 对于多个类型参数,每个类型参数都使用一个 **where** 子句,例如: ``` interface IMyInterface { } class Dictionary<TKey, TVal> where TKey : IComparable, IEnumerable where TVal : IMyInterface { public void Add(TKey key, TVal val) { } } ``` 还可以将约束附加到泛型方法的类型参数,例如: ``` public bool MyMethod<T>(T t) where T : IMyInterface { } ``` 请注意,对于委托和方法两者来说,描述类型参数约束的语法是一样的: ``` delegate T MyDelegate<T>() where T : new() ``` 有关泛型委托的信息,请参见[泛型委托](https://msdn.microsoft.com/zh-CN/library/sx2bwtw7.aspx)。 有关约束的语法和用法的详细信息,请参见[类型参数的约束](https://msdn.microsoft.com/zh-CN/library/d5x73970.aspx)。 ## C# 语言规范 有关详细信息,请参阅 [C# 语言规范](https://msdn.microsoft.com/zh-CN/library/ms228593.aspx)。该语言规范是 C# 语法和用法的权威资料。 ## 请参阅 [C# 参考](https://msdn.microsoft.com/zh-CN/library/618ayhy6.aspx) [C# 编程指南](https://msdn.microsoft.com/zh-CN/library/67ef8sbd.aspx) [泛型介绍(C# 编程指南)](https://msdn.microsoft.com/zh-CN/library/0x6a29h6.aspx) [new 约束(C# 参考)](https://msdn.microsoft.com/zh-CN/library/sd2w2ew5.aspx) [类型参数的约束(C# 编程指南)](https://msdn.microsoft.com/zh-CN/library/d5x73970.aspx)