说明:where关键字用于约束泛型!
举个例子:
public class BusinessBaseBLL<T, S> : BaseBLL<T, S> where T : new() where S : BusinessDAL<T>, new()
解释:
一、该例中 BaseBLL<T, S> 是 BusinessBaseBLL<T, S> 的基类
二、BaseBLL<T, S> where T : new() 中的where约束了T的类型为无参的构造函数的类
三、BaseBLL<T, S> where S : BusinessDAL<T>, new() 中 S 是 BusinessDAL<T> 类型的,并且是具有无参构造函数的!