C#委托
C#委托類似於在C或C++的函數指針。委托是保存引用的方法的引用類型變量。引用可以在運行時改變。
委托尤其是用於實現事件和回調方法。所有委托都隱含來源於System.Delegate類。
聲明委托
委托聲明確定可以通過委托引用的方法。委托可以參考的方法,它們具有相同簽名的委托。
例如,考慮委托:
public delegate int MyDelegate (string s);
前麵的委托可以被用來引用有一個字符串參數,並返回一個int型變量的任何方法。
委托聲明的語法如下:
delegate <return type> <delegate-name> <parameter list>
實例化委托
一旦委托類型已經聲明,委托對象必須使用new關鍵字來創建並與一個特定方法相關。當創建一個委托,傳遞給new表達式參數是這樣寫一個方法調用,但不可以冇有參數。例如:
public delegate void printString(string s); ... printString ps1 = new printString(WriteToScreen); printString ps2 = new printString(WriteToFile);
下麵的例子演示了聲明,實例化和使用,可用於引用帶一個整數參數的方法,並返回一個整數值的委托。
using System; delegate int NumberChanger(int n); namespace DelegateAppl { 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 nc1 = new NumberChanger(AddNum); NumberChanger nc2 = new NumberChanger(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
委托的多點傳送
委托對象可以使用“+”操作符組成。委托調用兩個委托組成。相同類型的僅代表可組成。 “ - ”的運算符可以使用從一個組成的委托刪除組件委托。
使用這種有用的屬性委托可以創建調用委托時,將調用方法的調用列表。這就是所謂的委托播。下麵的程序演示了委托的多播:
using System; delegate int NumberChanger(int n); namespace DelegateAppl { 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 nc; NumberChanger nc1 = new NumberChanger(AddNum); NumberChanger nc2 = new NumberChanger(MultNum); nc = nc1; nc += nc2; //calling multicast nc(5); Console.WriteLine("Value of Num: {0}", getNum()); Console.ReadKey(); } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
Value of Num: 75
使用委托
下麵的例子演示了如何使用委托。委托printString可以用來引用一個字符串作為輸入法和返回結果。
我們用這個委托來調用兩個方法,第一個打印字符串到控製台,而第二個打印到文件:
using System; using System.IO; namespace DelegateAppl { class PrintString { static FileStream fs; static StreamWriter sw; // delegate declaration public delegate void printString(string s); // this method prints to the console public static void WriteToScreen(string str) { Console.WriteLine("The String is: {0}", str); } //this method prints to a file public static void WriteToFile(string s) { fs = new FileStream("c:\message.txt", FileMode.Append, FileAccess.Write); sw = new StreamWriter(fs); sw.WriteLine(s); sw.Flush(); sw.Close(); fs.Close(); } // this method takes the delegate as parameter and uses it to // call the methods as required public static void sendString(printString ps) { ps("Hello World"); } static void Main(string[] args) { printString ps1 = new printString(WriteToScreen); printString ps2 = new printString(WriteToFile); sendString(ps1); sendString(ps2); Console.ReadKey(); } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
The String is: Hello World