The short answer
This just means that lambdas not capturing anything can be converted into a function pointer with the same signature:
auto func = [](int x) { return x * 2; };
int (*func_ptr)(int) = func; // legal.
int y = func_ptr(2); // y is 4.
And a capture makes it illegal:
int n = 2;
auto func = [=](int x) { return x * n; };
int (*func_ptr)(int) = func; // illegal, func captures n
The long answer
Lambdas are shorthand to create a functor:
auto func = [](int x) { return x * 2; };
Is equivalent to:
struct func_type
{
int operator()(int x) const { return x * 2; }
}
func_type func = func_type();
In this case func_type is the "closure type" and operator() is the "function call operator". When you take the address of a lambda, it is as if you declared the operator() static and take its address, like any other function:
struct func_type
{
static int f(int x) { return x * 2; }
}
int (*func_ptr)(int) = &func_type::f;
When you have captured variables, they become members of func_type. operator() depends on these members, so it can't be made static:
struct func_type
{
int const m_n;
func_type(int n) : m_n(n) {}
int operator()(int x) const { return x * m_n; }
}
int n = 2;
auto func = func_type(n);
An ordinary function has no notion of member variables. Keeping with this thought, lambdas can only be treated as an ordinary function if they also have no member variables.
sort.) – Kerrek SB Jul 13 '11 at 12:30