C#泛型详解及关键字作用
这篇文章主要来讲讲c#中的泛型,因为泛型在c#中有很重要的位置,对于写出高可读性,高性能的代码有着关键的作用。
一、什么是泛型?
泛型是 2.0 版 c# 语言和公共语言运行库 (clr) 中的一个非常重要的新功能。
我们在编程程序时,经常会遇到功能非常相似的模块,只是它们处理的数据不一样。但我们没有办法,只能分别写多个方法来处理不同的数据类型。这个时候,那么问题来了,有没有一种办法,用同一个方法来处理传入不同种类型参数的办法呢?泛型的出现就是专门来解决这个问题的,可以看出,微软还是很贴心的。
二、为什么要使用泛型?
接下来我们来看一段代码。
public class genericclass { public void showint(int n) { console.writeline("showint print {0},showint parament type is {1}",n,n.gettype()); } public void showdatetime(datetime dt) { console.writeline("showdatetime print {0},showdatetime parament type is {1}", dt, dt.gettype()); } public void showpeople(people people) { console.writeline("showpeople print {0},showpeople parament type is {1}", people, people.gettype()); } }
static void main(string[] args) { genericclass generice = new genericclass(); generice.showint(11); generice.showdatetime(datetime.now); generice.showpeople(new people { id = 11, name = "tom" }); console.readkey(); }
显示结果:
我们可以看出这三个方法,除了传入的参数不同外,其里面实现的功能都是一样的。在1.1版的时候,还没有泛型这个概念,那么怎么办呢。就有人想到了oop三大特性之一的继承,我们知道,c#语言中,object是所有类型的基类,将上面的代码进行以下优化:
public class genericclass { public void showobj(object obj) { console.writeline("showobj print {0},showobj parament type is {1}", obj, obj.gettype()); } } static void main(string[] args) { console.writeline("*****************object调用*********************"); generice.showobj(11); generice.showobj(datetime.now); generice.showobj(new people { id = 11, name = "tom" }); console.readkey(); }
显示结果:
我们可以看出,目地是达到了。解决了代码的可读性,但是这样又有个不好的地方了,我们这样做实际上是一个装箱拆箱操作,会损耗性能。
终于,微软在2.0的时候发布了泛型。接下来我们用泛型方法来实现该功能。
三、泛型类型参数
在使用泛型方法之前,我们先来了解下有关于泛型的一些知识。
在泛型类型或方法定义中,类型参数是在其实例化泛型类型的一个变量时,客户端指定的特定类型的占位符。 泛型类(genericlist<t>
)无法按原样使用,因为它不是真正的类型;它更像是类型的蓝图。 若要使用genericlist<t>
,客户端代码必须通过指定尖括号内的类型参数来声明并实例化构造类型。 此特定类的类型参数可以是编译器可识别的任何类型。 可创建任意数量的构造类型实例,其中每个使用不同的类型参数,如下所示:
genericlist<float> list1 = new genericlist<float>(); genericlist<exampleclass> list2 = new genericlist<exampleclass>(); genericlist<examplestruct> list3 = new genericlist<examplestruct>();
在genericlist<t>
的每个实例中,类中出现的每个t
在运行时均会被替换为类型参数。 通过这种替换,我们已通过使用单个类定义创建了三个单独的类型安全的有效对象。
三、泛型约束
定义泛型类时,可以对客户端代码能够在实例化类时用于类型参数的几种类型施加限制。 如果客户端代码尝试使用约束所不允许的类型来实例化类,则会产生编译时错误。 这些限制称为约束。 通过使用where
上下文关键字指定约束。 下表列出了六种类型的约束:
where t:结构(类型参数必须是值类型。可以指定除 nullable 以外的任何值类型。)
class myclass<u> where u : struct///约束u参数必须为“值 类型” { } public void mymetod<t>(t t) where t : struct { }
where t:类(类型参数必须是引用类型;这一点也适用于任何类、接口、委托或数组类型。)
class myclass<u> where u : class///约束u参数必须为“引用类型” { } public void mymetod<t>(t t) where t : class { }
where t:new()(类型参数必须具有无参数的公共构造函数。当与其他约束一起使用时,new() 约束必须最后指定。)
class employeelist<t> where t : employee, iemployee, system.icomparable<t>, new() { // ... }
where t:<基类名>(类型参数必须是指定的基类或派生自指定的基类。)
public class employee{} public class genericlist<t> where t : employee
where t:<接口名称>(类型参数必须是指定的接口或实现指定的接口。可以指定多个接口约束。约束接口也可以是泛型的。)
/// <summary> /// 接口 /// </summary> interface imyinterface { } /// <summary> /// 定义的一个字典类型 /// </summary> /// <typeparam name="tkey"></typeparam> /// <typeparam name="tval"></typeparam> class dictionary<tkey, tval> where tkey : icomparable, ienumerable where tval : imyinterface { public void add(tkey key, tval val) { } }
where t:u(为 t 提供的类型参数必须是为 u 提供的参数或派生自为 u 提供的参数。也就是说t和u的参数必须一样)
class list<t> { void add<u>(list<u> items) where u : t {/*...*/} }
以上就是对六种泛型的简单示例,当然泛型约束不仅仅适用于类,接口,对于泛型方法,泛型委托都同样适用。
三、泛型方法
public class genericclass { public void showt<t>(t t) { console.writeline("showt print {0},showt parament type is {1}", t, t.gettype()); } } static void main(string[] args) { console.writeline("*****************泛型方法调用*********************"); generice.showt<int>(11); generice.showt<datetime>(datetime.now); generice.showt<people>(new people { id = 11, name = "tom" }); console.readkey(); }
显示结果:
也是一样的,现在终于实现了我们想要达到的效果了。我们可以看出,无论是什么方式调用,最后我们获取出来的类型都是原始类型。我们知道,用object获取是利用了继承这一特性,当编译器编译的时候,我们传入的参数会进行装箱操作,当我们获取的时候又要进行拆箱操作,这个方法会损耗性能 。那么泛型方法实现的原理又是怎样的呢?首先,我们要知道,泛型是一个语法糖,在我们调用泛型方法,编译器进行编译时,才会确定传入的参数的类型,从而生成副本方法。这个副本方法与原始方法一法,所以不会有装箱拆箱操作,也就没有损耗性能这回事了。
四、泛型类
泛型类封装不特定于特定数据类型的操作。
通常,创建泛型类是从现有具体类开始,然后每次逐个将类型更改为类型参数,直到泛化和可用性达到最佳平衡。
创建自己的泛型类时,需要考虑以下重要注意事项:
- 要将哪些类型泛化为类型参数。
通常,可参数化的类型越多,代码就越灵活、其可重用性就越高。 但过度泛化会造成其他开发人员难以阅读或理解代码。
- 要将何种约束(如有)应用到类型参数
其中一个有用的规则是,应用最大程度的约束,同时仍可处理必须处理的类型。 例如,如果知道泛型类仅用于引用类型,则请应用类约束。 这可防止将类意外用于值类型,并 使你可在 t 上使用 as 运算符和检查 null 值。
- 是否将泛型行为分解为基类和子类。
因为泛型类可用作基类,所以非泛型类的相同设计注意事项在此也适用。 请参阅本主题后文有关从泛型基类继承的规则。
- 实现一个泛型接口还是多个泛型接口。
class basenode { } class basenodegeneric<t> { } // concrete type class nodeconcrete<t> : basenode { } //closed constructed type class nodeclosed<t> : basenodegeneric<int> { } //open constructed type class nodeopen<t> : basenodegeneric<t> { }
五、泛型接口
定义一个泛型接口:
interface imygenericinterface<t> { }
一个接口可定义多个类型参数,如下所示:
interface imygenericinterface<tkey,tvalue> { }
具体类可实现封闭式构造接口,如下所示:
interface ibaseinterface<t> { } class sampleclass : ibaseinterface<string> { }//如果t有约束,那么string类型必须得满足t的约束
六、泛型委托
委托可以定义它自己的类型参数。 引用泛型委托的代码可以指定类型参数以创建封闭式构造类型,就像实例化泛型类或调用泛型方法一样,如以下示例中所示:
class program { static void main(string[] args) { del<int> m1 = new del<int>(notify); m1.invoke(1111); del<string> m2 = new del<string>(notify); m2.invoke("字符串"); console.readkey(); } public delegate void del<t>(t item); public static void notify(int i) { console.writeline("{0} type is {1}", i,i.gettype()); } public static void notify(string str) { console.writeline("{0} type is {1}", str, str.gettype()); } }
运行结果:
七、泛型代码中的默认关键字:default
在泛型类和泛型方法中产生的一个问题是,在预先未知以下情况时,如何将默认值分配给参数化类型 t:
- t 是引用类型还是值类型。
- 如果 t 为值类型,则它是数值还是结构。
给定参数化类型 t 的一个变量 t,只有当 t 为引用类型时,语句 t = null 才有效;只有当 t 为数值类型而不是结构时,语句 t = 0 才能正常使用。解决方案是使用default关键字,此关键字对于引用类型会返回空,对于数值类型会返回零。对于结构,此关键字将返回初始化为零或空的每个结构成员,具体取决于这些结构是值类型还是引用类型。
namespace mygeneric { class program { static void main(string[] args) { object obj1=generictodefault<string>(); object obj2 = generictodefault<int>(); object obj3 = generictodefault<structdemo>(); console.readkey(); } public static t generictodefault<t>() { return default(t); } } public struct structdemo { public int id { get; set; } public string name { get; set; } } }
运行结果:
到此这篇关于c#泛型详解的文章就介绍到这了,更多相关c#泛型内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: Android仿网易游戏的精美开场动画+动画基础详解
下一篇: 详解Spring工厂特性