where T : class的含义

Posted

tags:

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

public class DbEntityEntry<TEntity> where TEntity : class

这是参数类型约束,指定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的接口

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

这种泛型写法对吗?2个where连在一起一用

通用约束,其中 T : struct 和 where T : class

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

where T : class泛型类型约束

where T : class

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