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?


s1 + s2expression are you talking about? There are two. – Charles Bailey Feb 11 '12 at 17:23