匿名函數(C# 編程指南)

來源:互聯網
上載者:User

匿名函數是一個“內聯”語句或運算式,可在需要委託類型的任何地方使用。 可以使用匿名函數來初始化命名委託,或傳遞命名委託(而不是命名委託類型)作為方法參數。

共有兩種匿名函數,以下主題中分別討論了這些函數:

  • Lambda 運算式(C# 編程指南) .

  • 匿名方法(C# 編程指南)

    說明

    Lambda 運算式可以綁定到運算式樹狀架構,也可以綁定到委託。

C# 中委託的發展

在 C# 1.0 中,您通過使用在代碼中其他位置定義的方法顯式初始化委託來建立委託的執行個體。 C# 2.0 引入了匿名方法的概念,作為一種編寫可在委託調用中執行的未命名內聯語句塊的方式。 C# 3.0 引入了 Lambda 運算式,這種運算式與匿名方法的概念類似,但更具表現力並且更簡練。 這兩個功能統稱為“匿名函數”。 通常,針對 .NET Framework 版本 3.5 及更高版本的應用程式應使用 Lambda 運算式。

下面的樣本示範了從 C# 1.0 到 C# 3.0 委託建立過程的發展:

C#複製
class Test{    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.