使用操作时,lambda 表达式中的 () 意味着什么?
我粘贴了 Jon Skeet 的 C# In Depth 网站上的一些代码:
static void Main()
{
// First build a list of actions
List<Action> actions = new List<Action>();
for (int counter = 0; counter < 10; counter++)
{
actions.Add(() => Console.WriteLine(counter));
}
// Then execute them
foreach (Action action in actions)
{
action();
}
}
http://csharpindepth.com/Articles/ Chapter5/Closures.aspx
注意这一行:
actions.Add( ()
括号内的 () 是什么意思?
我已经看过几个 lambda 表达式、委托、Action 对象的使用等示例,但我没有看到这个语法的解释。为什么需要它?
I have pasted some code from Jon Skeet's C# In Depth site:
static void Main()
{
// First build a list of actions
List<Action> actions = new List<Action>();
for (int counter = 0; counter < 10; counter++)
{
actions.Add(() => Console.WriteLine(counter));
}
// Then execute them
foreach (Action action in actions)
{
action();
}
}
http://csharpindepth.com/Articles/Chapter5/Closures.aspx
Notice the line:
actions.Add( ()
What does the () mean inside the brackets?
I have seen several examples of lambda expressions, delegates, the use of the Action object, etc but I have seen no explanation of this syntax. What does it do? Why is it needed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
这是声明不带参数的 lambda 表达式的简写。
This is shorthand for declaring a lambda expression which takes no arguments.
这是一个不带参数的 lambda 表达式。
That's a lambda expression without parameters.
我认为兰巴是这样的:
(x) => { 返回 x * 2; 但
只有这一点是重要的:(
x) => { 返回x * 2; 我们
需要 => 知道它是 lambda 而不是强制转换,因此我们得到:
x => x * 2
(抱歉没有将代码格式化为代码,那是因为您无法在代码中将内容加粗..)
I think of lambas like this:
(x) => { return x * 2; }
But only this is important:
(x) => { return x * 2; }
We need the => to know that it's a lambda instead of casting, and thus we get this:
x => x * 2
(sorry for not formatting code as code, that's because you can't make things bold in code..)
来自 MSDN。 表达式 lambda 采用 (inputs)=> 表达式的形式。 因此,类似 ()=> 的 lambda 表达式表示没有输入参数。 Action 的签名不带参数
From MSDN. An Expression lambda takes the form (inputs)=>expression. So a lambda like ()=>expression denotes there are no input parameters. Which the signature for Action takes no parameters
此行的作用是使用 lambda 表达式将匿名 Action 添加到列表中,该操作不带任何参数(这就是 () 存在的原因)并且不返回任何内容,因为它只打印计数器的实际值。
What this line does is to add an anonymous Action to the list using lambda expressions, that takes no parameter (that's the reason why the () are there) and returns nothing, due to the fact that it prints only the actual value of the counter.
它表示不带参数的匿名函数。
It denotes anonymous function without a parameter.