C# 委託的發展史: .Net 1.x 委託 =>.Net 2.x 匿名方法 => .Net 3.0/3.5 Lambda 運算式

來源:互聯網
上載者:User
/*        C# 委託的發展史: .Net 1.x 委託 =>.Net 2.x 匿名方法 => .Net 3.0/3.5 Lambda 運算式    ms-help://MS.MSDNQTR.v90.chs/dv_csref/html/6ce3f04d-0c71-4728-9127-634c7e9a8365.htm    在 C# 1.0 中,您通過使用在代碼中其他位置定義的方法顯式初始化委託來建立委託的執行個體。    C# 2.0 引入了匿名方法的概念,作為一種編寫可在委託調用中執行的未命名內聯語句塊的方式。    C# 3.0 引入了 Lambda 運算式,這種運算式與匿名方法的概念類似,但更具表現力並且更簡練。    這兩個功能統稱為“匿名函數”。通常,針對 .NET Framework 版本 3.5 及更高版本的應用程式應使用 Lambda 運算式。    下面的樣本示範了從 C# 1.0 到 C# 3.0 委託建立過程的發展:*/namespace Microshaoft{    using System;    class Test    {        //c# 1.0        delegate void TestDelegate(string s);        static void M(string s)        {            Console.WriteLine(s);        }        static void Main(string[] args)        {            // Original delegate syntax required             // initialization with a named method.            TestDelegate testdelA = new TestDelegate(M);            // C# 2.0: A delegate can be initialized with            // inline code, called an "anonymous method." This            // method takes a string as an input parameter.            TestDelegate testDelB = delegate                                        (                                            string s //參數                                        )                                    //匿名函數                                    {                                        Console.WriteLine(s);                                    };            // C# 3.0. A delegate can be initialized with            // a lambda expression. The lambda also takes a string            // as an input parameter (x). The type of x is inferred by the compiler.            TestDelegate testDelC =                                    (x) //參數                                        =>                                            //匿名函數                                            {                                                Console.WriteLine(x);                                            };            // Invoke the delegates.            testdelA("Hello. My name is M and I write lines.");            testDelB("That's nothing. I'm anonymous and ");            testDelC("I'm a famous author.");            // Keep console window open in debug mode.            Console.WriteLine("Press any key to exit.");            Console.ReadKey();        }    }    /* Output:        Hello. My name is M and I write lines.        That's nothing. I'm anonymous and        I'm a famous author.        Press any key to exit.    */}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.