Tagged Questions
20
votes
3answers
514 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
487 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 ...
13
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
311 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
261 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
341 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 ...
6
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
497 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
169 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
113 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
206 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
201 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
2answers
241 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
3answers
62 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
216 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
223 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
121 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
56 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
229 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 ...