Re: References to temporaries and function-calls
On 15 Feb, 15:30, "Erik Wikstr=F6m" <eri...@student.chalmers.se> wrote:
On Feb 15, 2:51 pm, "Gavin Deane" <deane_ga...@hotmail.com> wrote:
On 15 Feb, 13:16, "Erik Wikstr=F6m" <eri...@student.chalmers.se> wrote:
struct foo {
int i;
};
int bar(foo& f) {
return f.i++;
}
int main() {
bar(foo());
}
<snip>
Or put another way, I can't quite see the difference between the
following two:
bar(foo());
and
foo f;
bar(f);
Maybe you can now?
Sorry but no, in both cases the foo-object is temporary, but in one
there's a name and in the other there isn't.
Depends what you mean by "temporary". In a way, all variables with
automatic storage duration are "temporary" in that they don't last
forever. I had hoped to find a formal definition of "temporary" in the
standard, but if it's there it eluded me. But when I used the word
temporary in my post, i meant "temporary" as used by the wording of
the C++ standard. And by that (less precise than I would have liked)
definition, the foo object in
bar(foo());
is a temporary, while the foo object in
foo f;
bar(f);
is not a temporary.
I guess I'm kind of
looking for a rationale for this behaviour, and the only thing I can
think of is that if it were allowed you would lose an opportunity to
optimize, namely the ability to create the copied parameter in place
in the stackframe of the function, whereas that would not be possible
if a reference was used.
I just can't see any advantage of the current behaviour over the one I
described nor can I see reason why it should not be possible to
implement (though, admittedly I'm no compiler developer). On the other
hand I can see some usages of allowing the behaviour I described,
among other things a number of algorithms in the standard library
could become more useful.
Rationale is different. I was attempting to explain how the foo object
in bar(foo()); is temporary and so cannot be bound to a non-const
reference, assuming the definitions of all those terms as used in the
standard. As to *why* things are that way, that's a different question
(and one I'm not sure of - I'm not a compiler developer either). Maybe
someone else here can shed some light. Or perhaps comp.std.c++?
Gavin Deane