泛型很强大,下面我讲讲几种实例化泛型的方法,
第一种,使用new 约束
在类名或方法名后面 加上 where T : new()
第二种, 使用default()方法
声明时:T t1=default(T);
第三种,使用 Activator.CreateInstance<T>();方法
声明时:T t2= Activator.CreateInstance<T>();
ok,介绍完毕
new()约束 方法用起来比较麻烦 每次使用都要加 where T:new()
其他两种,你自己研究了