C#泛型
泛型允許延遲在一個類或方法編程元素的數據類型的規範中,直到它被實際在程序中使用。換句話說,泛型讓你寫一個類或方法可以與任何數據類型的工作。
編寫規範類或方法,以替代參數的數據類型。當編譯器遇到一個類構造函數或函數調用的方法,它生成的代碼來處理特定的數據類型。一個簡單的例子將有助於理解這個概念:
using System; using System.Collections.Generic; namespace GenericApplication { public class MyGenericArray<T> { private T[] array; public MyGenericArray(int size) { array = new T[size + 1]; } public T getItem(int index) { return array[index]; } public void setItem(int index, T value) { array[index] = value; } } class Tester { static void Main(string[] args) { //declaring an int array MyGenericArray<int> intArray = new MyGenericArray<int>(5); //setting values for (int c = 0; c < 5; c++) { intArray.setItem(c, c*5); } //retrieving the values for (int c = 0; c < 5; c++) { Console.Write(intArray.getItem(c) + " "); } Console.WriteLine(); //declaring a character array MyGenericArray<char> charArray = new MyGenericArray<char>(5); //setting values for (int c = 0; c < 5; c++) { charArray.setItem(c, (char)(c+97)); } //retrieving the values for (int c = 0; c< 5; c++) { Console.Write(charArray.getItem(c) + " "); } Console.WriteLine(); Console.ReadKey(); } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
0 5 10 15 20 a b c d e
泛型的特點
使用泛型就是豐富程序在以下幾個方麵的技術:
-
它可以幫助你最大限度地提高代碼的重用,類型安全和性能。
-
可以創建泛型集合類。 .NET框架類庫包含System.Collections.Generic命名空間幾個新的泛型集合類。可以在System.Collections命名空間中使用這些泛型集合類,而不是集合類。
-
可以創建自己的通用接口,類,方法,事件和委托。
-
可以創建約束以允許訪問上特定數據類型的方法的通用類。
-
可以由反射裝置用於一般數據類型在運行時的類型的信息。
泛型方法
在前麵的例子中,我們已經使用了一個通用類;我們可以聲明泛型方法的類型參數。下麵的程序說明了這個概念:
using System; using System.Collections.Generic; namespace GenericMethodAppl { class Program { static void Swap<T>(ref T lhs, ref T rhs) { T temp; temp = lhs; lhs = rhs; rhs = temp; } static void Main(string[] args) { int a, b; char c, d; a = 10; b = 20; c = 'I'; d = 'V'; //display values before swap: Console.WriteLine("Int values before calling swap:"); Console.WriteLine("a = {0}, b = {1}", a, b); Console.WriteLine("Char values before calling swap:"); Console.WriteLine("c = {0}, d = {1}", c, d); //call swap Swap<int>(ref a, ref b); Swap<char>(ref c, ref d); //display values after swap: Console.WriteLine("Int values after calling swap:"); Console.WriteLine("a = {0}, b = {1}", a, b); Console.WriteLine("Char values after calling swap:"); Console.WriteLine("c = {0}, d = {1}", c, d); Console.ReadKey(); } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
Int values before calling swap: a = 10, b = 20 Char values before calling swap: c = I, d = V Int values after calling swap: a = 20, b = 10 Char values after calling swap: c = V, d = I
泛型委托
可以定義一個通用的委托類型的參數。例如:
delegate T NumberChanger<T>(T n);
下麵的例子顯示使用委托:
using System; using System.Collections.Generic; delegate T NumberChanger<T>(T n); namespace GenericDelegateAppl { class TestDelegate { static int num = 10; public static int AddNum(int p) { num += p; return num; } public static int MultNum(int q) { num *= q; return num; } public static int getNum() { return num; } static void Main(string[] args) { //create delegate instances NumberChanger<int> nc1 = new NumberChanger<int>(AddNum); NumberChanger<int> nc2 = new NumberChanger<int>(MultNum); //calling the methods using the delegate objects nc1(25); Console.WriteLine("Value of Num: {0}", getNum()); nc2(5); Console.WriteLine("Value of Num: {0}", getNum()); Console.ReadKey(); } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
Value of Num: 35 Value of Num: 175