及方便自己在函数内部定义函数
c
int main() {
int i = 1;
auto c = [](int a, int c) {
return a+b;
};
int d = a(2, i);
cout<<c;
return 0;
}
格式:
auto functionname = [capture](parameters) -> return_type { /* ... */ };
(1)[capture] :[]内为外部变量的传递方式,值、引用等,如下
[] //表示的是在lambda定义之前的域,对外部参数的调用;
[=] //表示外部参数直接传值
[&] //表示外部参数传引用,可修改值。当默认捕获符是 & 时,后继的简单捕获符必须不以 & 开始。而当默认捕获符是 = 时,后继的简单捕获符必须以 & 开始。
[x, &y] //x is captured by value, y is captured by reference
[&, x] //x is explicitly captured by value. Other variables will be captured by reference
[=, &z] //z is explicitly captured by reference. Other variables will be captured by value
(2)(parameters) :()内为形参,和普通函数的形参一样。
(3)-> return_type:->后面为lambda函数的返回类型,如 -> int、-> string等。一般情况下,编译器推出lambda函数的返回值,所以这部分可以省略不写。
(4){ /* ... */ }:{}内为函数主体,和普通函数一样。