What is a lambda expression in C++11? When would I use one? What class of problem do they solve that wasn't possible prior to their introduction?
A few examples, and use cases would be useful.
|
The problemC++ includes useful generic functions like
If you only use f once and in that specific place it seems overkill to be writing a whole class just to do something trivial and one off. In C++03 you might be tempted to write something like the following, to keep the functor local:
however this is not allowed, The new solutionC++11 introduces lambdas allow you to write an inline, anonymous functor to replace the
Lambda functions are just syntactic sugar for anonymous functors. Return typesIn simple cases the return type of the lambda is deduced for you, e.g.:
however when you start to write more complex lambdas you will quickly encounter cases where the return type cannot be deduced by the compiler, e.g.:
To resolve this you are allowed to explicitly specify a return type for a lambda function, using
"Capturing" variablesSo far we've not used anything other than what was passed to the lambda within it, but we can also use other variables, within the lambda. If you want to access other variables you can use the capture clause (the
You can capture by both reference and value, which you can specify using
The generated |
|||||||
|
What is a lambda function?The C++ concept of a lambda function originates in the lambda calculus and functional programming. A lambda is an unnamed function that is useful (in actual programming, not theory) for short snippets of code that are impossible to reuse and are not worth naming. In C++ a lambda function is defined like this
or in all its glory
The capture listThe capture list defines what from the outside of the lambda should be available inside the function body and how. It can be either:
You can mix any of the above in a comma separated list The argument listThe argument list is the same as in any other C++ function. The function bodyThe code that will be executed when the lambda is actually called. Return type deductionIf a lambda has only one return statement, the return type can be omitted and has the implicit type of MutableIf a lambda is marked mutable (e.g. Use casesThe library defined by the ISO standard benefits heavily from lambdas and raises the usability several bars as now users don't have to clutter their code with small functors in some accessible scope. |
|||||||||
|
|
Lambda expressions are typically used to encapsulate algorithms so that they can be passed to another function. However, it is possible to execute a lambda immediately upon definition:
is functionally equivalent to
This makes lambda expressions a powerful tool for refactoring complex functions. You start by wrapping a code section in a lambda function as shown above. The process of explicit parameterization can then be performed gradually with intermediate testing after each step. Once you have the code-block fully parameterized (as demonstrated by the removal of the Similarly, you can use lambda expressions to initialize variables based on the result of an algorithm...
As a way of partitioning your program logic, you might even find it useful to pass a lambda expression as an argument to another lambda expression...
|
|||||||||||||
|