匿名方法
我们已经提到过,委托是用于引用与其具有相同标签的方法。换句话说,您可以使用委托对象调用可由委托引用的方法。
匿名方法(Anonymous methods) 提供了一种传递代码块作为委托参数的技术。匿名方法是没有名称只有主体的方法。
在匿名方法中您不需要指定返回类型,它是从方法主体内的 return 语句推断的。
编写匿名方法的语法
匿名方法是通过使用 delegate 关键字创建委托实例来声明的。例如:
1 2 3 4 5 6
| delegate void NumberChanger(int n); ... NumberChanger nc = delegate(int x) { Console.WriteLine("Anonymous Method: {0}", x); };
|
代码块 Console.WriteLine(“Anonymous Method: {0}”, x); 是匿名方法的主体。
委托可以通过匿名方法调用,也可以通过命名方法调用,即,通过向委托对象传递方法参数。
注意: 匿名方法的主体后面需要一个 **;**。
例如:
实例
下面的实例演示了匿名方法的概念:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| using System;
delegate void NumberChanger(int n); namespace DelegateAppl { class TestDelegate { static int num = 10; public static void AddNum(int p) { num += p; Console.WriteLine("Named Method: {0}", num); }
public static void MultNum(int q) { num *= q; Console.WriteLine("Named Method: {0}", num); }
static void Main(string[] args) { NumberChanger nc = delegate(int x) { Console.WriteLine("Anonymous Method: {0}", x); }; nc(10);
nc = new NumberChanger(AddNum); nc(5);
nc = new NumberChanger(MultNum); nc(2); Console.ReadKey(); } } }
|
当上面的代码被编译和执行时,它会产生下列结果:
1 2 3
| Anonymous Method: 10 Named Method: 15 Named Method: 30
|