使用操作时,lambda 表达式中的 () 意味着什么?

发布于 2024-07-14 09:31:24 字数 696 浏览 6 评论 0原文

我粘贴了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

陈独秀 2024-07-21 09:31:24

这是声明不带参数的 lambda 表达式的简写。

() => 42;  // Takes no arguments returns 42
x => 42;   // Takes 1 argument and returns 42
(x) => 42; // Identical to above

This is shorthand for declaring a lambda expression which takes no arguments.

() => 42;  // Takes no arguments returns 42
x => 42;   // Takes 1 argument and returns 42
(x) => 42; // Identical to above
最偏执的依靠 2024-07-21 09:31:24

这是一个不带参数的 lambda 表达式。

That's a lambda expression without parameters.

眼眸里的快感 2024-07-21 09:31:24

我认为兰巴是这样的:

(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..)

昨迟人 2024-07-21 09:31:24

来自 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

蓝戈者 2024-07-21 09:31:24

此行的作用是使用 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.

又爬满兰若 2024-07-21 09:31:24

它表示不带参数的匿名函数。

It denotes anonymous function without a parameter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文