Tagged Questions

20
votes
3answers
546 views

Why pre-increment operator gives rvalue in C?

In C++, pre-increment operator gives lvalue because incremented object itself is returned, not a copy. But in C, it gives rvalue. Why?
16
votes
5answers
496 views

Is a member of an rvalue structure an rvalue or lvalue?

A function call returning a structure is an rvalue expression, but what about its members? This piece of code works well with my g++ compiler, but gcc gives a error saying "lvalue required as left ...
15
votes
3answers
1k views

PODs, non-PODs, rvalue and lvalues

Could anyone explain the details in terms of rvalues, lvalues, PODs, and non-PODs the reason why the first expression marked below is not ok while the second expression marked below is ok? In my ...
14
votes
2answers
3k views

Why are C++0x rvalue reference not the default?

One of the cool new features of the upcoming C++ standard, C++0x, are "rvalue references." An rvalue reference is similar to an lvalue (normal) reference, except that it can be bound to a temporary ...
9
votes
2answers
365 views

C++0x const RValue reference as function parameter

I am trying to understand why someone would write a function that takes a const rvalue reference. In the code example below what purpose is the const rvalue reference function (returning "3"). And ...
9
votes
3answers
2k views

lvalue and rvalue

Just wonder if a literal string is a lvalue or a rvalue. Are other literals (like for int, float, char etc) lvalue or rvalue? Is the return value of a function a lvalue or rvalue? How do you tell ...
8
votes
1answer
273 views

Classes, Rvalues and Rvalue References

An lvalue is a value bound to a definitive region of memory whereas an rvalue is an expression value whose existence is temporary and who does not necessarily refer to a definitive region of memory. ...
7
votes
4answers
344 views

Reference initialization in C++

Can anybody explain to me why there is a difference between these two statements? class A{}; const A& a = A(); // correct A& b = A(); // wrong It says invalid ...
7
votes
5answers
1k views

Binding temporary to a lvalue reference

I have the following code string three() { return "three"; } void mutate(string& ref) { } int main() { mutate(three()); return 0; } You can see I am passing three() to mutate ...
5
votes
6answers
532 views

Why is taking the address of a temporary illegal?

I know that the code written below is illegal void doSomething(std::string *s){} int main() { doSomething(&std::string("Hello World")); return 0; } The reason is that we are not ...
4
votes
2answers
186 views

One VS2010 bug ? Allowing binding non-const reference to rvalue WITHOUT EVEN a warning?

string foo() { return "hello"; } int main() { //below should be illegal for binding a non-const (lvalue) reference to a rvalue string& tem = foo(); //below should be the correct ...
3
votes
5answers
127 views

Will an lvalue to rvalue conversion happen?

C++ Standard (4/5) the lvalue-to-rvalue conversion is not done on the operand of the unary & operator. For example: int x; int *p = &x; In the above case, are p are &x both ...
3
votes
5answers
235 views

Rvalues in C++03

How can you tell whether or not a given parameter is an rvalue in C++03? I'm writing some very generic code and am in need of taking a reference if possible, or constructing a new object otherwise. ...
2
votes
1answer
218 views

Regarding lvalue-to-rvalue conversion, when is it required?

I've been reading quite many on the Internet and it seems that many people mentioned the following rules (but i couldn't find it in the standard), The addition operator + (and all other binary ...
2
votes
3answers
282 views

Array and Rvalue

$4.2/1 - "An lvalue or rvalue of type “array ofN T” or “array of unknown bound of T” can be converted to an rvalue of type “pointer to T.” The result is a pointer to the first element of ...
1
vote
1answer
63 views

behaviour of const_cast

I was reading about const_cast operator in c++ 1.First weird thing thing i can't understand is const_cast operator syntax i.e. ...
1
vote
3answers
63 views

typecasting and reference in c++

Please look at the following call and the corresponding function, long pagenumber = 0; Node *newNode = createNode(); bufMgr->writePage(pageNumber,(char*)newNode); and writePage is declared as ...
1
vote
1answer
108 views

Different types of *-values [closed]

Possible Duplicate: What are rvalues, lvalues, xvalues, glvalues, and prvalues? The standard states: 3.2 The this pointer 1 In the body of a non-static (9.3) member function, the keyword ...
1
vote
3answers
231 views

regarding lvalue-to-rvalue conversion

"lvalue-to-rvalue conversion is not done on the operand of the unary & operator." May I know what it meant for >Can any one explain ..It Please Ex: int a[]={1,5}; int* x=&a;
1
vote
5answers
226 views

Difference between C++ const refernces and consts?

What is the difference between: const double& pi = 3.14; and (no ampersand): const double pi = 3.14; They both seem to have the same L and R values so what is the difference? Thanks.
1
vote
6answers
3k views

“l-value required” error

When do we get "l-value required" error...while compiling C++ program???(i am using VC++ )
0
votes
7answers
122 views

What constitutes of RValues?

RValues are things which are not maniputable regions of memory, so literals like integers are considered RValues. Do constants constitute RValues? const int x = 0; is maniputable at least one time. ...
0
votes
1answer
58 views

Templates Non Type Parameters+ Lvalue/Rvalue

C++03 $14.1/6 - "A non-type non-reference template-parameter is not an lvalue." C++0x $14.2/6- "A non-type non-reference template-parameter is an rvalue." Is there any specific ...
0
votes
2answers
232 views

what is the Rvalue and Lvalue in c [closed]

Possible Duplicates: lvalue and rvalue difference between c's expression and c++'s expression On executing the program below, I got error an message like "required Lvalue is ...