Connecting Tech Pros Worldwide Forums | Help | Site Map

Reference are always lvalue?

George2
Guest
 
Posts: n/a
#1: Dec 21 '07
Hello everyone,


Is the conclusion correct? Both const reference and non-const
reference are lvalue?

I think it is true and I can not find a sample which does not follow
it.


thanks in advance,
George

Victor Bazarov
Guest
 
Posts: n/a
#2: Dec 21 '07

re: Reference are always lvalue?


George2 wrote:
Quote:
Is the conclusion correct? Both const reference and non-const
reference are lvalue?
>
I think it is true and I can not find a sample which does not follow
it.
If an expression has the type 'reference to T', it's an lvalue. See
[expr]/6. I presume by "const reference" and "non-const reference"
you actually mean "reference to const" and "reference to non-const".

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask


Closed Thread