C#泛型
泛型Generic,允许延迟编写类或方法中的编程元素的数据类型的规范,直到实际在程序中使用的时候。
可以通过数据类型的替代参数编写类或方法的规范。当编译器遇到类的构造函数或方法的函数调用时,它会成生代码来处理指定的数据类型。
- 泛型类
使用Visual Studio新建C#控制台应用程序chapter24_001
1.新建一个泛型数组类
//定义一个泛型类
public class MyGenericArray<T>
{
//泛型数组成员变量
private T[] array;
private int size;
//初始化泛型数组
public MyGenericArray(int size)
{
array = new T[size + 1];
this.size = size;
}
//返回泛型数组指定下标的元素值
public T GetItem(int index)
{
return array[index];
}
//为指定索引的泛型数组指定值
public void SetItem(int index, T value)
{
try
{
array[index] = value;
}
catch (Exception e)
{
Console.WriteLine("指定索引数组元素赋值失败!");
}
}
//获得数组元素的长度
public int GetLength()
{
return this.size;
}
}
2.在Main方法中加入如下代码进行测试
string pattern = "[1-9]+";
int length = 0;
while (true)
{
Console.WriteLine("输入数组的长度:");
string len = Console.ReadLine();
if (Regex.IsMatch(len, pattern))
{
length = Convert.ToInt32(len);
break;
}
else
{
Console.WriteLine("ERROR:请输入大于0的正整数!");
continue;
}
}
//声明一个字符串数组
MyGenericArray<string> stringArray = new MyGenericArray<string>(length);
//为数组中的每一个元素赋值
for (int i = 0; i < length; i++)
{
Console.Write("请输入数组中索引为{0}的字符串:", i);
string tmp = Console.ReadLine();
stringArray.SetItem(i, tmp);
}
//遍历数组中元素
for (int i = 0; i < length; i++)
{
Console.Write(stringArray.GetItem(i) + " ");
}
Console.WriteLine();
Console.ReadKey();
编译运行结果如下:
-
泛型特点
1.有助于最大限度地重用代码、保护类型的安全以及提高性能
2.可以创建泛型集合类,.NET框架类库在System.Collection.Generic命名空间中包含了一些泛型集合类
3.可以创建自己的泛型接口、泛型类、泛型方法、泛型事件和泛型委托
4.可以对泛型类进行约束以访问特定数据类型方法
5.关于泛型数据类型中使用的类型信息可在运行时通过使用反射获取 -
泛型方法
可以通过类型参数来声泛型方法。
使用Visual Studio新建C#控制台应用程序chapter24_002
1.在项目中添加如下泛型方法
static void Swap<T>(ref T lhs, ref T rhs)
{
System.Reflection.MemberInfo type = typeof(T);
Console.WriteLine("当前调用使用类型:{0}",type.Name);
T temp;
temp = lhs;
lhs = rhs;
rhs = temp;
}
2.在Main方法中添加如下代码进行测试
int a = 1;
int b = 2;
string c = "xiaoxie";
string d = "xiesheng";
Console.WriteLine("调用前a,b,c,d的值分别是:{0}、{1}、{2}、{3}", a, b, c, d);
Swap<int>(ref a, ref b);
Swap<string>(ref c, ref d);
Console.WriteLine("调用后a,b,c,d的值分别是:{0}、{1}、{2}、{3}", a, b, c, d);
Console.ReadKey();
编译运行结果如下: