码迷,mamicode.com
首页 > 其他好文 > 详细

Lambda 表达式(C# 编程指南)

时间:2014-05-24 05:25:47      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   c   code   java   

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 的平方值。  如下面的示例所示,你可以将此表达式分配给委托类型:

bubuko.com,布布扣
        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;
        }
bubuko.com,布布扣
  • 语句Lambda
bubuko.com,布布扣
1 delegate void TestDelegate(string s);
2 3 TestDelegate myDel = n => { string s = n + " " + "World"; Console.WriteLine(s); };
4 myDel("Hello");
bubuko.com,布布扣

 

Lambda 表达式(C# 编程指南),布布扣,bubuko.com

Lambda 表达式(C# 编程指南)

标签:style   class   blog   c   code   java   

原文地址:http://www.cnblogs.com/tuqun/p/3736444.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!