C# 匿名方法

2022-09-20 15:08 更新

我們已經(jīng)提到過,委托是用于引用與其具有相同標(biāo)簽的方法。換句話說,您可以使用委托對(duì)象調(diào)用可由委托引用的方法。

匿名方法(Anonymous methods) 提供了一種傳遞代碼塊作為委托參數(shù)的技術(shù)。匿名方法是沒有名稱只有主體的方法。

在匿名方法中您不需要指定返回類型,它是從方法主體內(nèi)的 return 語句推斷的。


編寫匿名方法的語法

匿名方法是通過使用 delegate 關(guān)鍵字創(chuàng)建委托實(shí)例來聲明的。例如:

delegate void NumberChanger(int n);
...
NumberChanger nc = delegate(int x){
    Console.WriteLine("Anonymous Method: {0}", x);
};

代碼塊 Console.WriteLine("Anonymous Method: {0}", x); 是匿名方法的主體。

委托可以通過匿名方法調(diào)用,也可以通過命名方法調(diào)用,即,通過向委托對(duì)象傳遞方法參數(shù)。

例如:

nc(10);

實(shí)例

下面的實(shí)例演示了匿名方法的概念:

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){
            // 使用匿名方法創(chuàng)建委托實(shí)例
            NumberChanger nc = delegate(int x){
               Console.WriteLine("Anonymous Method: {0}", x);
            };
            
            // 使用匿名方法調(diào)用委托
            nc(10);

            // 使用命名方法實(shí)例化委托
            nc =  new NumberChanger(AddNum);
            
            // 使用命名方法調(diào)用委托
            nc(5);

            // 使用另一個(gè)命名方法實(shí)例化委托
            nc =  new NumberChanger(MultNum);
            
            // 使用命名方法調(diào)用委托
            nc(2);
            Console.ReadKey();
        }
    }
}

當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果:

Anonymous Method: 10
Named Method: 15
Named Method: 30
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)