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() );

temporary pointer lives until bar returns, but what for the

baz( bar( foo().c_str() ) );

is it still lives until bar returns, or baz return means full-expression end here, compilers I checked destruct objects after baz returns, but can I rely on that?

link|improve this question
yes, answer to this question should be a part of stackoverflow.com/questions/4214153/lifetime-of-temporaries, I asked a new one because I do not have rights to post comments there and I was interested in a specific detail which is not covered there. – q______b Mar 29 '11 at 19:51
feedback

closed as exact duplicate by sbi, DeadMG, Jerry Coffin, AProgrammer, Fred Nurk May 20 '11 at 7:20

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 2 down vote accepted

Temporaries life until the end of the full expression in which they are created. A "full expression" is an expression that's not a sub-expression of another expression.

In baz(bar(...));, bar(...) is a subexpression of baz(...), while baz(...) is not a subexpression of anything. Therefore, baz(...) is the full expression, and all temporaries created during the evaluation of this expression will not be deleted until after baz(...) returned.

link|improve this answer
feedback

As the name suggests, the full-expression is all of the expression, including the call to baz(), and so the temporary will live until the call to baz() returns.

link|improve this answer
feedback

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