The question is simple: what is lifetime of that functor object that is automatically generated for me by the C++ compiler when I write a lambda-expression?

I did a quick search, but couldn't find a satisfactory answer. In particular, if I pass the lambda somewhere, and it gets remembered there, and then I go out of scope, what's going to happen once my lambda is called later and tries to access my stack-allocated, but no longer alive, captured variables? Or does the compiler prevent such situation in some way? Or what?

link|improve this question

72% accept rate
I'm guessing you either get garbage or a segfualt? – the_drow Mar 5 '11 at 23:21
Ok, so the answer is "just don't do it"? This idea did occur to me, but... Don't do WHAT exactly? Don't remember function pointers? Or don't pass function pointers to functions? (that's the whole point, isn't it?) Or don't use lambdas at all? In other words, what is the intended use for lambdas? I mean, besides using them in calls to STL aggregate/iterate functions as is written over and over in every example. – Fyodor Soikin Mar 5 '11 at 23:25
feedback

1 Answer

up vote 5 down vote accepted

Depends on how you capture your variables. If you capture them by reference ([&]) and they go out of scope, the references will be invalid, just like normal references. Capture them by value ([=]) if you want to make sure they outlife their scope.

link|improve this answer
Thank you. This made me realize I actually asked the wrong question. I'll regroup and ask another one. :-) – Fyodor Soikin Mar 5 '11 at 23:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.