您的位置:首页 > 健康 > 养生 > 国外vps私人_网页设计与制作教程题库_google关键词分析_seo在线短视频发布页运营

国外vps私人_网页设计与制作教程题库_google关键词分析_seo在线短视频发布页运营

2025/1/11 6:52:18 来源:https://blog.csdn.net/chengyq116/article/details/145066318  浏览:    关键词:国外vps私人_网页设计与制作教程题库_google关键词分析_seo在线短视频发布页运营
国外vps私人_网页设计与制作教程题库_google关键词分析_seo在线短视频发布页运营

Lambda expressions in C++ {C++ 中的 lambda 表达式}

  • 1. Parts of a lambda expression (Lambda 表达式的各个部分)
    • 1.2. Parameter list (Optional)
  • References

lambda /ˈlæm.də/:the 11th letter of the Greek alphabet (希腊语字母表的第 11 个字母)

https://learn.microsoft.com/en-us/cpp/cpp/lambda-expressions-in-cpp

1. Parts of a lambda expression (Lambda 表达式的各个部分)

This illustration shows the parts of lambda syntax:

在这里插入图片描述

  1. capture clause (Also known as the lambda-introducer in the C++ specification)

  2. parameter list Optional (可选) (Also known as the lambda declarator)

  3. mutable specification Optional (可选)

  4. exception-specification Optional (可选)

  5. trailing-return-type Optional (可选)

  6. lambda body

1.2. Parameter list (Optional)

Lambdas can both capture variables and accept input parameters.
lambda 既可以捕获变量,也可以接受输入参数。

A parameter list (lambda declarator in the Standard syntax) is optional and in most aspects resembles the parameter list for a function.
参数列表 (在标准语法中称为 lambda 声明符) 是可选的,它在大多数方面类似于函数的参数列表。

#include <stdio.h>int main(void) {auto add_func = [](const int first, const int second) {return first + second;};const int result = add_func(2, 3);printf("result = %d\n", result);return 0;
}
result = 5
请按任意键继续. . .

lambda could own default arguments.

#include <stdio.h>int main(void) {auto add_func = [](const int first, const int second = 12) {return first + second;};const int result = add_func(3);printf("result = %d\n", result);return 0;
}
result = 15
请按任意键继续. . .

References

[1] Yongqiang Cheng, https://yongqiang.blog.csdn.net/

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com