泛型(Generic) 允許您延遲編寫類或方法中的編程元素的數據類型的規范,直到實際在程序中使用它的時候。換句話說,泛型允許您編寫一個可以與任何數據類型一起工作的類或方法。
您可以通過數據類型的替代參數編寫類或方法的規范。當編譯器遇到類的構造函數或方法的函數調用時,它會生成代碼來處理指定的數據類型。下面這個簡單的實例將有助於您理解這個概念:
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) { // 聲明一個整型數組 MyGenericArray<int> intArray = new MyGenericArray<int>(5); // 設置值 for (int c = 0; c < 5; c++) { intArray.setItem(c, c*5); } // 獲取值 for (int c = 0; c < 5; c++) { Console.Write(intArray.getItem(c) + " "); } Console.WriteLine(); // 聲明一個字符數組 MyGenericArray<char> charArray = new MyGenericArray<char>(5); // 設置值 for (int c = 0; c < 5; c++) { charArray.setItem(c, (char)(c+97)); } // 獲取值 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
使用泛型是一種增強程序功能的技術,具體表現在以下幾個方面:
在上面的實例中,我們已經使用了泛型類,我們可以通過類型參數聲明泛型方法。下面的程序說明了這個概念:
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'; // 在交換之前顯示值 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); // 調用 swap Swap<int>(ref a, ref b); Swap<char>(ref c, ref d); // 在交換之後顯示值 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) { // 創建委托實例 NumberChanger<int> nc1 = new NumberChanger<int>(AddNum); NumberChanger<int> nc2 = new NumberChanger<int>(MultNum); // 使用委托對象調用方法 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