泛型编程(Generic Program)
基础知识:多态;对象比较,IComparable接口
7.1 了解泛型
例:使用泛型,求出一个数组的最大、最小值。
定义:
void GetMaxMinValueFromArray<T>(T[] datas, ref T Max, ref T Min) where T:IComparable
{
。。。。。
}
使用:
GetMaxMinValueFromArray<int>(IntArray,ref MaxInt,ref MinInt)
GetMaxMinValueFromArray<Char>(CharArray,ref MaxChar,ref MinChar)
限制条件:where T:IComparable,需要满足IComparable接口。
C++的泛型编程基于模板,有比较成熟的内库,比如C++标准模板库(STL,Standard Template Library)。
7.2 在开发中使用泛型
7.2.1 使用泛型集合List
.Net Framework 基本类库中提供了一系列的泛型类与泛型接口,其中,在命名空间“System.collection.generic”中所提供的一组泛型集合在编程中应用很多。