码迷,mamicode.com
首页 > 其他好文 > 详细

class Core<T> where T : class, new() 求解

时间:2016-10-29 18:48:02      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:iba   let   mode   实现   class类   sed   base   where   int   

where T:
泛型约束,约束类型T必须具有无参的构造函数
表示T必须是class类型或它的派生类。
new()构造函数约束允许开发人员实例化一个泛型类型的对象。 
一般情况下,无法创建一个泛型类型参数的实例。然而,new()约束改变了这种情况,要求类型参数必须提供一个无参数的构造函数。 
在使用new()约束时,可以通过调用该无参构造函数来创建对象。 
基本形式: where T : new() 

public interface IBaseDAL<T> where T : BaseModel, new()
{
  int Add(T model);
  int Update(T model);
  int Delete(T model);
}
让泛类BaseDAL实现接口:
public class BaseDAL<T> : IBaseDAL<T> where T : BaseModel, new()

class Core<T> where T : class, new() 求解

标签:iba   let   mode   实现   class类   sed   base   where   int   

原文地址:http://www.cnblogs.com/youmingkuang/p/6011196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!