C#中的delegate委托类型基本学习教程
委托
delegate 是表示对具有特定参数列表和返回类型的方法的引用的类型。在实例化委托时,你可以将其实例与任何具有兼容签名和返回类型的方法相关联。你可以通过委托实例调用方法。
委托用于将方法作为参数传递给其他方法。事件处理程序就是通过委托调用的方法。你可以创建一个自定义方法,当发生特定事件时,某个类(如 windows 控件)就可以调用你的方法。下面的示例演示了一个委托声明:
public delegate int performcalculation(int x, int y);
可将任何可访问类或结构中与委托类型匹配的任何方法分配给委托。该方法可以是静态方法,也可以是实例方法。这样便能通过编程方式来更改方法调用,还可以向现有类中插入新代码。
注意:在方法重载的上下文中,方法的签名不包括返回值。但在委托的上下文中,签名包括返回值。换句话说,方法和委托必须具有相同的返回类型。
将方法作为参数进行引用的能力使委托成为定义回调方法的理想选择。例如,对比较两个对象的方法的引用可以作为参数传递到排序算法中。由于比较代码在一个单独的过程中,因此可通过更常见的方式编写排序算法。
委托概述
委托具有以下属性:
- 委托类似于 c++ 函数指针,但它们是类型安全的。
- 委托允许将方法作为参数进行传递。
- 委托可用于定义回调方法。
- 委托可以链接在一起;例如,可以对一个事件调用多个方法。
- 方法不必与委托类型完全匹配。
- c# 2.0 版引入了匿名方法的概念,此类方法允许将代码块作为参数传递来代替单独定义的方法。c# 3.0 引入了 lambda 表达式,利用它们可以更简练地编写内联代码块。匿名方法和 lambda 表达式(在某些上下文中)都可编译为委托类型。这些功能现在统称为匿名函数。
使用委托
委托是安全封装方法的类型,类似于 c 和 c++ 中的函数指针。与 c 函数指针不同的是,委托是面向对象的、类型安全的和可靠的。委托的类型由委托的名称确定。以下示例声明名为 del 的委托,该委托可以封装采用字符串作为参数并返回 void 的方法:
public delegate void del(string message);
委托对象通常通过提供委托将封装的方法的名称或使用匿名方法构造。对委托进行实例化后,委托会将对其进行的方法调用传递到该方法。调用方传递到委托的参数将传递到该方法,并且委托会将方法的返回值(如果有)返回到调用方。这被称为调用委托。实例化的委托可以按封装的方法本身进行调用。例如:
// create a method for a delegate. public static void delegatemethod(string message) { system.console.writeline(message); } // instantiate the delegate. del handler = delegatemethod; // call the delegate. handler("hello world");
委托类型派生自 .net framework 中的 delegate 类。委托类型是封装的,它们不能派生出其他类,也不能从 delegate 派生出自定义类。由于实例化的委托是一个对象,因此可以作为参数传递或分配给一个属性。这允许方法作为参数接受委托并在稍后调用委托。这被称为异步回调,是在长进程完成时通知调用方的常用方法。当以这种方式使用委托时,使用委托的代码不需要知道要使用的实现方法。功能类似于封装接口提供的功能。
回调的另一个常见用途是定义自定义比较方法并将该委托传递到短方法。它允许调用方的代码成为排序算法的一部分。以下示例方法使用 del 类型作为参数:
public void methodwithcallback(int param1, int param2, del callback) { callback("the number is: " + (param1 + param2).tostring()); }
然后,你可以将上面创建的委托传递到该方法:
methodwithcallback(1, 2, handler);
并将以下输出接收到控制台:
the number is: 3
以抽象方式使用委托时,methodwithcallback 不需要直接调用控制台,记住,其不必设计为具有控制台。 methodwithcallback 的作用是简单准备字符串并将字符串传递到其他方法。由于委托的方法可以使用任意数量的参数,此功能特别强大。
当委托构造为封装实例方法时,委托将同时引用实例和方法。委托不知道除其所封装方法以外的实例类型,因此委托可以引用任何类型的对象,只要该对象上有与委托签名匹配的方法。当委托构造为封装静态方法时,委托仅引用方法。请考虑以下声明:
public class methodclass { public void method1(string message) { } public void method2(string message) { } }
加上之前显示的静态 delegatemethod,我们现在已有三个 del 实例可以封装的方法。
调用时,委托可以调用多个方法。这被称为多播。若要向委托的方法列表(调用列表)添加其他方法,只需使用加法运算符或加法赋值运算符(“+”或“+=”)添加两个委托。例如:
methodclass obj = new methodclass(); del d1 = obj.method1; del d2 = obj.method2; del d3 = delegatemethod; //both types of assignment are valid. del allmethodsdelegate = d1 + d2; allmethodsdelegate += d3;
此时,allmethodsdelegate 的调用列表中包含三个方法,分别为 method1、method2 和 delegatemethod。原有的三个委托(d1、d2 和 d3)保持不变。调用 allmethodsdelegate 时,将按顺序调用所有三个方法。如果委托使用引用参数,引用将按相反的顺序传递到所有这三个方法,并且一种方法进行的任何更改都将在另一种方法上见到。当方法引发未在方法内捕获到的异常时,该异常将传递到委托的调用方,并且不会调用调用列表中的后续方法。如果委托具有返回值和/或输出参数,它将返回上次调用方法的返回值和参数。若要删除调用列表中的方法,请使用减法运算符或减法赋值运算符(“+”或“+=”)。例如:
//remove method1 allmethodsdelegate -= d1; // copy allmethodsdelegate while removing d2 del onemethoddelegate = allmethodsdelegate - d2;
由于委托类型派生自 system.delegate,因此可以在委托上调用该类定义的方法和属性。例如,若要查询委托调用列表中方法的数量,你可以编写:
int invocationcount = d1.getinvocationlist().getlength(0);
调用列表中具有多个方法的委托派生自 multicastdelegate,该类属于 system.delegate 的子类。由于这两个类都支持 getinvocationlist,因此在其他情况下,上述代码也将产生作用。
多播委托广泛用于事件处理中。事件源对象将事件通知发送到已注册接收该事件的接收方对象。若要注册一个事件,接收方需要创建用于处理该事件的方法,然后为该方法创建委托并将委托传递到事件源。事件发生时,源调用委托。然后,委托将对接收方调用事件处理方法,从而提供事件数据。给定事件的委托类型由事件源确定。有关详细信息,请参阅事件(c# 编程指南)。
在编译时比较分配的两个不同类型的委托将导致编译错误。如果委托实例是静态的 system.delegate 类型,则允许比较,但在运行时将返回 false。例如:
delegate void delegate1(); delegate void delegate2(); static void method(delegate1 d, delegate2 e, system.delegate f) { // compile-time error. //console.writeline(d == e); // ok at compile-time. false if the run-time type of f // is not the same as that of d. system.console.writeline(d == f); }
带有命名方法的委托与带有匿名方法的委托
委托可以与命名方法关联。使用命名方法对委托进行实例化时,该方法将作为参数传递,例如:
// declare a delegate: delegate void del(int x); // define a named method: void dowork(int k) { /* ... */ } // instantiate the delegate using the method as a parameter: del d = obj.dowork;
这被称为使用命名的方法。使用命名方法构造的委托可以封装静态方法或实例方法。在早期版本的 c# 中,命名方法是对委托进行实例化的唯一方式。但是,在不希望付出创建新方法的系统开销时,c# 使您可以对委托进行实例化,并立即指定委托在被调用时将处理的代码块。代码块可以包含 lambda 表达式或匿名方法。
备注:作为委托参数传递的方法必须与委托声明具有相同的签名。
委托实例可以封装静态或实例方法。
尽管委托可以使用 out 参数,但建议您不要将其用于多路广播事件委托,因为您无法知道哪个委托将被调用。
示例 1
以下是声明及使用委托的一个简单示例。注意,委托 del 和关联的方法 multiplynumbers 具有相同的签名
// declare a delegate delegate void del(int i, double j); class mathclass { static void main() { mathclass m = new mathclass(); // delegate instantiation using "multiplynumbers" del d = m.multiplynumbers; // invoke the delegate object. system.console.writeline("invoking the delegate using 'multiplynumbers':"); for (int i = 1; i <= 5; i++) { d(i, 2); } // keep the console window open in debug mode. system.console.writeline("press any key to exit."); system.console.readkey(); } // declare the associated method. void multiplynumbers(int m, double n) { system.console.write(m * n + " "); } }
输出:
invoking the delegate using 'multiplynumbers': 2 4 6 8 10
示例 2
在下面的示例中,一个委托被同时映射到静态方法和实例方法,并分别返回特定的信息。
// declare a delegate delegate void del(); class sampleclass { public void instancemethod() { system.console.writeline("a message from the instance method."); } static public void staticmethod() { system.console.writeline("a message from the static method."); } } class testsampleclass { static void main() { sampleclass sc = new sampleclass(); // map the delegate to the instance method: del d = sc.instancemethod; d(); // map to the static method: d = sampleclass.staticmethod; d(); } }
输出:
a message from the instance method. a message from the static method.
上一篇: 解析C#中的分部类和分部方法