首页 > 代码库 > Lambda 表达式(C# 编程指南)
Lambda 表达式(C# 编程指南)
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");
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。