C# 3.0新特性體驗之Lambda運算式

來源:互聯網
上載者:User

C#2.0介紹了一個新特性--匿名方法,允許開發人員線上(inline)聲明自己的函 數代碼而無須使用委託函數(delegate function)。C#3.0中提供了一個新特性- -Lambda運算式,它提供了完成相同目標的更加簡潔的格式。讓我們在討論 Lambda運算式以前仔細研究一下匿名方法。

匿名方法

假設你需要建立一個按鈕,當點擊它的時候更新ListBox裡的內容。在C#1.0 和1.1裡,你要這樣做:

public MyForm()
{
 listBox = new ListBox(...);
 textBox = new TextBox(...);
 addButton = new Button(...);
 addButton.Click += new EventHandler(AddClick);
}
void AddClick(object sender, EventArgs e)
{
 listBox.Items.Add(textBox.Text);
}

在C#2.0裡,你需要這樣做:

public MyForm()
{
 listBox = new ListBox(...);
 textBox = new TextBox(...);
 addButton = new Button(...);
 addButton.Click += delegate
 {
  listBox.Items.Add(textBox.Text);
};

就像你看到的一樣,你不必要特別的聲明一個新方法來將它串連到一個事件 上。你可以在C#2.0裡使用匿名方法來完成同樣的工作。C#3.0裡介紹了一種更加 簡單的格式,Lambda運算式,你可以直接使用"=>"來書寫你的表 達式列表,後面跟上一個運算式或者語句塊。

Lambda運算式中的參數

Lambda運算式中的參數可以是顯式或者隱式類型的。在一個顯式型別參數列 表裡,每個運算式的類型是顯式指定的。在一個隱式型別參數列表裡,類型是通 過上下文推斷出來的:

(int x) => x + 1 // 顯式型別參數
(y,z) => return y * z; // 隱式型別參數

Lambda演算執行個體

下面的例子給出了兩種不同的方法來列印出一個list中長度為偶數的字串 。第一種方法AnonMethod使用了匿名方法,第二種LambdaExample則是通過 Lambda演算實現:

// Program.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.Query;
using System.Xml.XLinq;
using System.Data.DLinq;
namespace LambdaExample
{
 public delegate bool KeyValueFilter<K, V>(K key, V value);
 static class Program
 {
  static void Main(string[] args)
  {
   List<string> list = new List<string>();
   list.Add("AA");
   list.Add("ABC");
   list.Add("DEFG");
   list.Add("XYZ");
   Console.WriteLine("Through Anonymous method");
   AnonMethod(list);
   Console.WriteLine("Through Lambda expression");
   LambdaExample(list);
   Dictionary<string, int> varClothes= new Dictionary<string,int>();
   varClothes.Add("Jeans", 20);
   varClothes.Add("Shirts", 15);
   varClothes.Add("Pajamas", 9);
   varClothes.Add("Shoes", 9);
   var ClothesListShortage = varClothes.FilterBy((string name,
   int count) => name == "Shoes" && count < 10);
   // example of multiple parameters
   if(ClothesListShortage.Count > 0)
    Console.WriteLine("We are short of shoes");
   Console.ReadLine();
 }
 static void AnonMethod(List<string> list)
 {
  List<string> evenNumbers = list.FindAll(delegate(string i)
  { return (i.Length % 2) == 0; });
  foreach (string evenNumber in evenNumbers)
  {
   Console.WriteLine(evenNumber);
  }
 }
 static void LambdaExample(List<string> list)
 {
  var evenNumbers = list.FindAll(i =>(i.Length % 2) == 0); // example of single parameter
  foreach(string i in evenNumbers)
  {
   Console.WriteLine(i);
  }
 }
}
public static class Extensions
{
 public static Dictionary<K, V> FilterBy<K, V>
(this Dictionary<K, V> items, KeyValueFilter<K, V> filter)
 {
  var result = new Dictionary<K, V>();
  foreach(KeyValuePair<K, V> element in items)
  {
   if (filter(element.Key, element.Value))
    result.Add(element.Key, element.Value);
  }
  return result;
 }
 
}
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.