C# - 匿名方法
我们讨论了委托用于引用任何与委托具有相同签名的方法。换句话说,您可以使用委托对象调用可被委托引用的方法。
匿名方法提供了一种将代码块作为委托参数传递的技术。匿名方法是没有名称,只有方法体的方法。
您无需在匿名方法中指定返回类型;返回类型可从方法体中的 return 语句推断出来。
编写匿名方法
匿名方法是在创建委托实例时使用 delegate 关键字声明的。例如,
delegate void NumberChanger(int n); ... NumberChanger nc = delegate(int x) { Console.WriteLine("Anonymous Method: {0}", x); };
代码块 Console.WriteLine("Anonymous Method: {0}", x); 是匿名方法的主体。
委托可以通过匿名方法和命名方法以相同的方式调用,即通过将方法参数传递给委托对象。
例如:
nc(10);
示例
以下示例演示了这一概念 -
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); } public static int getNum() { return 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(); } } }
当编译并执行上述代码时,它会产生以下结果 -
Anonymous Method: 10 Named Method: 15 Named Method: 30