瞭解下C# 委託(Delegate)

大雄45發表於2022-07-07
導讀 C# 中的委託(Delegate)類似於 C 或 C++ 中函式的指標。委託(Delegate) 是存有對某個方法的引用的一種引用型別變數。引用可在執行時被改變。

瞭解下C# 委託(Delegate)瞭解下C# 委託(Delegate)

委託(Delegate)特別用於實現事件和回撥方法。所有的委託(Delegate)都派生自 System.Delegate 類。

宣告委託(Delegate)

委託宣告決定了可由該委託引用的方法。委託可指向一個與其具有相同標籤的方法。

例如,假設有一個委託:

public delegate int MyDelegate (string s);

上面的委託可被用於引用任何一個帶有一個單一的 string 引數的方法,並返回一個 int 型別變數。

宣告委託的語法如下:

delegate <return type> <delegate-name> <parameter list>
例項化委託(Delegate)

一旦宣告瞭委託型別,委託物件必須使用 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)
      {
         // 建立委託例項
         NumberChanger nc1 = new NumberChanger(AddNum);
         NumberChanger nc2 = new NumberChanger(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
委託的多播(Multicasting of a Delegate)

委託物件可使用 "+" 運算子進行合併。一個合併委託呼叫它所合併的兩個委託。只有相同型別的委託可被合併。"-" 運算子可用於從合併的委託中移除元件委託。

使用委託的這個有用的特點,您可以建立一個委託被呼叫時要呼叫的方法的呼叫列表。這被稱為委託的 多播(multicasting),也叫組播。下面的程式演示了委託的多播:

例項

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)
      {
         // 建立委託例項
         NumberChanger nc;
         NumberChanger nc1 = new NumberChanger(AddNum);
         NumberChanger nc2 = new NumberChanger(MultNum);
         nc = nc1;
         nc += nc2;
         // 呼叫多播
         nc(5);
         Console.WriteLine("Value of Num: {0}", getNum());
         Console.ReadKey();
      }
   }
}

當上面的程式碼被編譯和執行時,它會產生下列結果:

Value of Num: 75
委託(Delegate)的用途

下面的例項演示了委託的用法。委託 printString 可用於引用帶有一個字串作為輸入的方法,並不返回任何東西。

我們使用這個委託來呼叫兩個方法,第一個把字串列印到控制檯,第二個把字串列印到檔案:

例項

using System;
using System.IO;
namespace DelegateAppl
{
   class PrintString
   {
      static FileStream fs;
      static StreamWriter sw;
      // 委託宣告
      public delegate void printString(string s);
      // 該方法列印到控制檯
      public static void WriteToScreen(string str)
      {
         Console.WriteLine("The String is: {0}", str);
      }
      // 該方法列印到檔案
      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();
      }
      // 該方法把委託作為引數,並使用它呼叫方法
      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

原文來自:

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2904567/,如需轉載,請註明出處,否則將追究法律責任。

相關文章