Create a Dangling Reference with the C++0x Lambda
This snippet compiles with gcc 4.6.0 without a single warning and works nicely at the run-time:
#include <iostream>
#include <functional> // std::function
#include <vector> // std::vector
#include <algorithm> // std::for_each
int main(){
auto accumulator = [](int x) -> std::function<int (int)>{
return [=](int y) ->int {
return x+y;
};
};
std::vector < std::function<int(int)> > vec;
vec.push_back(accumulator(1));
vec.push_back(accumulator(2));
vec.push_back(accumulator(3));
std::for_each(vec.begin(), vec.end(), [](std::function<int(int)> f){std::cout << f(4) << " ";});
std::cout << std::endl;
}
The program output is 5 6 7.
Now pass x to the inner lambda as reference (hoping to create a state):
#include <iostream>
#include <functional> // std::function
#include <vector> // std::vector
#include <algorithm> // std::for_each
int main(){
auto accumulator = [](int x) -> std::function<int (int)>{
return [&](int y) ->int {
return x+=y;
};
};
std::vector < std::function<int(int)> > vec;
vec.push_back(accumulator(1));
vec.push_back(accumulator(2));
vec.push_back(accumulator(3));
std::for_each(vec.begin(), vec.end(), [](std::function<int(int)> f){std::cout << f(4) << " ";});
std::cout << std::endl;
}
Not a tiny hint of a warning when compiling. The program crashes badly at the run-time:
terminate called after throwing an instance of 'std::bad_function_call'
what(): std::exception
148181164 148181168 148181172 Aborted
The problem has little to do with a compiler such as gcc 4.6.0. You can find out more about this error, and learn from my mistakes at http://stackoverflow.com/questions/5566198/undefined-behavior-with-the-c0x-closure-ii.
terminate()counts. – Ken Bloom Apr 5 '11 at 18:18terminateyourself. I suppose it's not a clean exit, so arguably it's a crash, but it seems like cheating to me :-) – Steve Jessop Apr 5 '11 at 18:30