Lambda 表达式是一种可用于创建委托或表达式目录树类型的匿名函数。通过使用 lambda
表达式,可以写入可作为参数传递或作为函数调用值返回的本地函数。 Lambda 表达式对于编写 LINQ
查询表达式特别有用。
=>, and you put the expression or statement block on the other side.‘
data-guid="35d22bcb09811da5e0ec07f34c10c0a8">若要创建 Lambda 表达式,需要在 Lambda 运算符 =>
左侧指定输入参数(如果有),然后在另一侧输入表达式或语句块。x => x * x specifies a parameter that’s named x and returns the value of x squared.‘
data-guid="c072edd5f07566e3185446a6649f1fe0">例如,lambda 表达式 x
=> x * x 指定名为 x 的参数并返回 x 的平方值。 如下面的示例所示,你可以将此表达式分配给委托类型:
delegate int del(int i);
static void Main(string[] args)
{
del myDelegate = x => x * x;
//等同于
del myDelegate = new del(Square);int j = myDelegate(5); //j = 25
}private static int Square(int x)
{
return x * x;
}
- 语句Lambda
1 delegate void TestDelegate(string s);
2 …
3 TestDelegate myDel = n => { string s = n + " " + "World"; Console.WriteLine(s); };
4 myDel("Hello");
Lambda 表达式(C# 编程指南),布布扣,bubuko.com
时间: 2024-10-13 15:40:38