The full-expression tag has no wiki summary.
15
votes
2answers
483 views
Lifetime of temporaries
The following code works fine, but why is this correct code? Why is the "c_str()" pointer of the temporary returned by foo() valid? I thought, that this temporary is already destroyed when bar() is ...
3
votes
2answers
152 views
Full-expression boundaries and lifetime of temporaries [closed]
Possible Duplicate:
C++: Life span of temporary arguments?
It is said that temporary variables are destroyed as the last step in evaluating the full-expression, e.g.
bar( foo().c_str() );
...