where T : class泛型类型约束

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了where T : class泛型类型约束相关的知识,希望对你有一定的参考价值。

类型参数约束,.NET支持的类型参数约束有以下五种:

where T : struct | T必须是一个结构类型
where T : class T必须是一个类(class)类型
where T : new() | T必须要有一个无参构造函数
where T : NameOfBaseClass | T必须继承名为NameOfBaseClass的类
where T : NameOfInterface | T必须实现名为NameOfInterface的接口

微软MSDN详细说明:http://msdn.microsoft.com/zh-cn/library/bb384067.aspx

以上是关于where T : class泛型类型约束的主要内容,如果未能解决你的问题,请参考以下文章

where(泛型类型约束)

class A<T>where T:new()是啥意思

泛型中Where T:Class和Where T:new()的使用与区别

C#泛型 类型约束

泛型Where T 说明

关于C#中泛型类型参数约束(where T : class)