您的位置:首页 > 编程语言 > C#

C# 泛型 WHERE 约束

2017-08-17 09:44 295 查看
WHERE
子句用于指定对下列类型的约束:这些类型可用作泛型声明中定义的类型形参的实参。

public
class
MyGenericClass<T>
where
T:IComparable
{ } T实现IComparable 接口
public void Request<T>(List<T> EntityList)  where T : class
public
class
MyGenericClass<T>
where
T :
IComparable,
new()
class
MyClass<T,
U>
where
T :
class
where
U :
struct

.NET支持的类型参数约束有以下五种:
where T : struct                               | T必须是一个结构类型
where T : class                                | T必须是一个Class类型
where T : new()                               | T必须要有一个无参构造函数
where T : NameOfBaseClass          | T必须继承名为NameOfBaseClass的类
where T : NameOfInterface             | T必须实现名为NameOfInterface的接口
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  泛型 WHERE约束 c# 建模