泛型参数约束 主要用在基类上或者接口上
IBaseService<T> where T:class
表示类型变量(参数,子类) 必需要继承IBaseService
IBaseService<T> where T:new()
表示类型变量 必需含有无参构造函数(默认或手动添加无参构造函数)
public interface IRepository<T> where T : class,new ()
{
bool AddEntity(T entity);
bool UpdateEntity(T entity);
bool DeleteEntityById(object id);
IList<T> GetAllEntities();
/// <summary>
/// 分页获取实体记录
/// </summary>
/// <param name="whereLabda"></param>
/// <param name="pageSize"></param>
/// <param name="pageIndex"></param>
/// <returns></returns>
IList<T> GetPageEntities(Func<T, bool> whereLabda, int? pageSize, int? pageIndex);
IList<T> GetEntities(Func<T, bool> whereLabda);
}
<T> where
的作用是说明T
是泛型的,where
是用来约束泛型T
的;
T : class,new ()
这名的意思是T
是一个类且有一个空的构造函数
泛型支持的几种约束类型
约束 | 说明 |
---|---|
where T:struct | 对于结构约束,类型T必须是值类型 |
where T:class | 类约束指定类型T必须是引用类型 |
where T:IFoo | 指定类型T必须实现接口IFoo |
where T:Foo | 指定类型T必须派生自基类Foo |
where T:new() | 这是一个构造函数约束,指定类型T必须有一个默认构造函数 |
where T1:T2 | 这个约束也可以指定,类型T1派生自泛型类型T2 |
注意:只能为默认构造函数定义构造函数约束,不能为其他构造函数定义构造函数约束。
使用泛型类型还可以合并多个约束。where T:IFoo,new()
约束和MyClass<T>
声明指定,类型T
必须实现IFoo
接口,且必须有一个默认构造函数。
注意:在C#中,where
子句的一个重要限制是,不能定义必须由泛型类型实现的运算符。运算符不能再接口中定义。在where
子句中,指定定义基类、接口和默认构造函数。