位置:首页 > 高级语言 > C#在线教程 > C#委托

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