Re: Temporaries
On Aug 12, 9:49 pm, Victor Bazarov <v.Abaza...@comAcast.net> wrote:
Francesco wrote:
On Aug 12, 6:17 pm, Prasoon <prasoonthegr...@gmail.com> wrote:
Are all temporaries in C++ "rvalues"?
According to me "yes".
Am I right?
However consider the following code.
#include <iostream>
int a;
int& foo()
{
return a;
}
int main()
{
foo()=6;
}
Is there any temporary created in the above code?
According to me "no" there isn't any.
foo() returns just a reference to "a" (and no temporary created).
Correct me if I am wrong.
I don't know how my code would fit into the discourse that follows to
your post, Praason, anyway, the following...
-------
#include <iostream>
using namespace std;
struct temp {
string id;
void operator=(int i) {
cout << id << ": " << i << endl;
}
};
temp operator+(temp t, string s) {
temp res;
res.id = t.id + s;
return res;
}
int main()
{
temp t;
t.id = "t";
(t + "_temp") = 6;
return 0;
}
-------
...does compile and produces this output:
t_temp: 6
Hence I assume that the expression:
(t + "_temp")
turns into a temporary object which seems an lvalue to me.
It's not an lvalue, although its position on the left side of the
assignment expression would suggest that.
I understand that my words (my code) could be interpreted as if I
meant "lvalue == something on the left side of an assignment" but
actually I meant something more, I hope I'll be able to explain myself
in the right way...
What we see here is that it's
a modifiable rvalue, and the non-const member function (your operator=
with 'int' as the argument in that case) is called for it. That's
explicitly allowed by the Standard (you can find it in [basic.lval]/10.
By the way let me say that I wasn't able to read your reference.
I think I could have found it following, for example, the "draft June
2009" link found on this page:
http://www.open-std.org/jtc1/sc22/wg21/docs/projects#14882
Well, unfortunately I cannot get that PDF. I have an odd proxy-only
Internet-connection that chokes on big files, and I assume that's a
big PDF. Sorry if I'm about to lucubrate over a wrong basis... read on
please and correct me where I'll go out-road, if you'll find it worth
doing - and if a more "agile" version of the standard is available
somewhere I'd appreciate a pointer, as I wasn't able to find it by
myself, I'm willing to get the proper sources.
The expression in the penultimate statement in 'main' can be rewritten as
(t + "_temp").operator=(6);
which makes it more apparent that a non-const member function is called
to modify the temporary object.
In this rewriting of yours:
(t + "_temp").operator=(6);
I still see:
(t + "_temp")
as an lvalue, and here is the reason (I've looked up the reference I
had in my mind when posting my code): in section 4.9.6 ("Objects and
lvalue") of TC++PL, 3rd edition, B. Stroustrup writes this line -
please note that the citation is _my_ translation of the Italian text:
"That is, an /object/ is a contiguous region of memory; an /lvalue/ is
an expression with which it is possible to refer to an
object." [emphasis as in the original text]
This definition fits perfectly to my code and as well to your
rewriting, to my eyes, but I understand that the only true reference
should be the standards, which I wasn't able to get.
But please don't ask me to defend my statement: it's just an
impression, and I could have misunderstood what an lvalue actually is.
Happens. C++ stretches the meaning of rvalue and lvalue (as Alf
explained elsethread).
Well, I must admit that my comprehension of the whole thing is really
poor, please excuse me if my posts distract from the topic and don't
add anything to it - in reality my target is just to get a better grip
and to learn something new, stealing as much as I can from you all,
please excuse me for being so selfish ;-)
Cheers,
Francesco
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask