Re: Why extracting string from stringstream(a) fails?
On Oct 31, 6:45 pm, Pavel
<pauldontspamt...@removeyourself.dontspam.yahoo> wrote:
James Kanze wrote:
[...]
I've still got to examine the new text. The reason for the rule
(I think) is for things like:
struct S { A a; B b; }; // A and B class types...
S f();
B const& rb = f().b;
What should be the lifetime of the S returned by f(). I'd
argue that the current text of the standard says that its
lifetime must end at the end of the full expression. But
the only way to end it, while extending the lifetime of the
B temporary bound to rb, is to copy it out of the S object.
Why does the lifetime of B temporary has to be extended?
Because the standard says so. When a reference is initialized
with a temporary, the lifetime of that temporary is extended to
match that of the reference. (See =A712.2.)
Do you imply this because the lifetime of rb extends beyond
the one of S temporary?
Yes. The standard clearly requires that the lifetime of the
temporary bound to the reference be extended to that of the
reference. It also clearly requires that the lifetime of the
temporary S terminate at the end of the full expression. The
current standard allows a copy here, and the compilers I've
checked in the past (and the one I have access to at present:
VC++) do make a copy. The current draft forbids the copy here,
while not changing any of the other requirements; I'm not sure
how they expect this to be implemented.
--
James Kanze