In "The C++ Programming Language (3rd)" p.255:

A temporary can be used as an initializer for a const reference or a named object. For example:

void g(const string&, const string&);

void h(string& s1, string& s2)
{
   const string& s = s1+s2;
   string ss = s1+s2;

   g(s, ss);  // we can use s and ss here
}

This is fine. The temporary is destroyed when "its" reference or named object go out of scope.

Is he saying that the temporary object created by s1+s2 is destroyed when ss goes out of scope? Isn't it get destroyed as soon as it is copy initialized to ss?

link|improve this question

78% accept rate
In your last paragraph, which s1 + s2 expression are you talking about? There are two. – Charles Bailey Feb 11 at 17:23
The second one. – Alice Feb 11 at 17:27
@Alice Please review your previous questions and tick an answer if it answered your question. – Styne666 Feb 11 at 18:07
1  
11 months is more than long enough to learn how to format SO posts. Please start doing that. – Lightness Races in Orbit Feb 11 at 18:19
feedback

2 Answers

up vote 2 down vote accepted

The only temporaries in your code are the s1 + s2. The first one gets bound to the const-ref s, and thus its lifetime is extended to that of s. Nothing else in your code is a temporary. In particular, neither s nor ss are temporaries, since they are manifestly named variables.

The second s1 + s2 is of course also a temporary, but it dies at the end of the line, having been used to initialize ss only.

Update: Perhaps one point deserves emphasis: In the final line, g(s, ss);, the point is that s is a perfectly valid reference, and it is not a dangling reference as you might perhaps have expected, precisely because of the life-time extension rule for temporaries bound to const-references.

link|improve this answer
Doesn't the second string ss = s1+s2; also create a temporary? – Luchian Grigore Feb 11 at 17:25
But bjarne says "The temporary is destroyed when "its" reference or named object go out of scope." – Alice Feb 11 at 17:31
The previous page also contains "Unless bound to a reference or used to initialize a named object, a temporary object is destroyed at the end of the full expression in which it was created.". So I'm confused. – Alice Feb 11 at 17:33
To my understanding, the temporary in this situation is also an implicit const string variable, created as actual second parameter passed to g, because non-const ss can not be passed as is. Or am I wrong? – Stan Feb 11 at 17:36
@Alice: The first temporary created by s1 + s2 is destroyed when s goes out of scope. Do you agree? Binding it to the "named reference" s is the crucial step. By contrast, the result of the second expression s1 + s2 is not bound to a named reference, so it expires at the end of the line (the "full expression"). – Kerrek SB Feb 11 at 18:02
show 10 more comments
feedback

Both are true, because two temporaries are created:

//creates a temporary that has its lifetime extended by the const &
const string& s = s1+s2;

//creates a temporary that is copied into ss and destroyed
string ss= s1+s2;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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