C++11 provides support for anonymous functions, called lambda expressions. A lambda expression has the form:
[capture](parameters)->return_type{function_body}
1
2
3
* An example lambda function is defined as follows:
*
[](intx,inty)->int{returnx+y;}
1
2
* C++11 also supports closures. Closures are defined between square brackets `[` and `]` in the declaration of lambda expression.
* The mechanism allows these variables to be captured by value or by reference. The following table demonstrates this:
[]//no variables defined. Attempting to use any external variables in the lambda is an error.
[x,&y]//x is captured by value, y is captured by reference
[&]//any external variable is implicitly captured by reference if used
[=]//any external variable is implicitly captured by value if used
[&,x]//x is explicitly captured by value. Other variables will be captured by reference
[=,&z]//zisexplicitlycapturedbyreference.Othervariableswillbecapturedbyvalue