- C# 基础教程
- C# - 首页
- C# - 概述
- C# - 环境
- C# - 程序结构
- C# - 基本语法
- C# - 数据类型
- C# - 类型转换
- C# - 变量
- C# - 常量
- C# - 运算符
- C# - 决策制定
- C# - 循环
- C# - 封装
- C# - 方法
- C# - 可空类型
- C# - 数组
- C# - 字符串
- C# - 结构体
- C# - 枚举
- C# - 类
- C# - 继承
- C# - 多态
- C# - 运算符重载
- C# - 接口
- C# - 命名空间
- C# - 预处理器指令
- C# - 正则表达式
- C# - 异常处理
- C# - 文件 I/O
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) { //create delegate instances using anonymous method NumberChanger nc = delegate(int x) { Console.WriteLine("Anonymous Method: {0}", x); }; //calling the delegate using the anonymous method nc(10); //instantiating the delegate using the named methods nc = new NumberChanger(AddNum); //calling the delegate using the named methods nc(5); //instantiating the delegate using another named methods nc = new NumberChanger(MultNum); //calling the delegate using the named methods nc(2); Console.ReadKey(); } } }
当以上代码编译并执行时,会产生以下结果 -
Anonymous Method: 10 Named Method: 15 Named Method: 30
广告