首頁  >  文章  >  後端開發  >  【c#教學】C# 匿名方法

【c#教學】C# 匿名方法

黄舟
黄舟原創
2016-12-24 13:11:54944瀏覽

C# 匿名方法

我們已經提到過,委託是用來引用與其具有相同標籤的方法。換句話說,您可以使用委託物件呼叫可由委託引用的方法。

匿名方法(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

# 以上就是【c# 以上是【c#  以上就是方法的內容,更多相關內容請關注PHP中文網(www.php.cn)!


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn