• 什么是匿名方法?


    匿名方法(Anonymous methods)匿名方法是没有名称只有主体的方法。 提供了一种传递代码块作为委托参数的技术。

    在匿名方法中您不需要指定返回类型,它是从方法主体内的 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

    推荐调试理解
     
  • 相关阅读:
    centos7源以及相关的一些命令
    创建Vue实例的三种方法
    github 钩子管理工具 overcommit
    npm管理registry 【转】
    两个字典增量部分
    celery (二) task调用
    shell编程
    linux 环境变量 转
    celery (二) task
    celery(一) application
  • 原文地址:https://www.cnblogs.com/ykgbk/p/7771122.html
Copyright © 2020-2023  润新知