Tagged Questions
32
votes
1answer
2k views
Overload on reference, versus sole pass-by-value + std::move?
It seems the main advice concerning C++0x's rvalues is to add move constructors and move operators to your classes, until compilers default-implement them.
But waiting is a losing strategy if you use ...
27
votes
2answers
519 views
non-class rvalues always have cv-unqualified types
§3.10 section 9 says "non-class rvalues always have cv-unqualified types". That made me wonder...
int foo()
{
return 5;
}
const int bar()
{
return 5;
}
void pass_int(int&& i)
{
...
20
votes
3answers
510 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?
18
votes
5answers
595 views
Why is T() = T() allowed?
I believe the expression T() creates an rvalue (by the Standard). However, the following code compiles (at least on gcc4.0):
class T {};
int main()
{
T() = T();
}
I know technically this is ...
17
votes
7answers
998 views
Are all temporaries rvalues in C++?
I have been coding in C++ for past few years. But there is one question that I have not been able to figure out. I want to ask, are all temporaries in C++, rvalues?
If no, can anyone provide me an ...
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
183 views
What rvalues have names?
@FredOverflow mentioned in the C++ chatroom that this is a rare case of rvalues that have names. The C++0x FDIS mentions under 5.1.1 [expr.prim.general] p4:
Otherwise, if a member-declarator ...
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 ...
13
votes
13answers
2k views
Why is ++i considered an l-value, but i++ is not?
Why is ++i is l-value? and i++ not
Initially there were 2 questions one was removed since that was exact duplicate. So don't down vote the answers that were answering difference between pre- and ...
11
votes
1answer
525 views
Best form for constructors? Pass by value or reference?
I'm wondering the best form for my constructors. Here is some sample code:
class Y { ... }
class X
{
public:
X(const Y& y) : m_y(y) {} // (a)
X(Y y) : m_y(y) {} // (b)
X(Y&& y) : ...
10
votes
5answers
342 views
What is decltype(0 + 0)?
(Prompted by an answer.)
Given N3290, §7.1.6.2p4, where the list items are unnumbered, but numbered here for our convenience:
The type denoted by decltype(e) is defined as follows:
if e ...
10
votes
5answers
268 views
prolonging the lifetime of temporaries
What is the design rationale behind allowing this
const Foo& a = function_returning_Foo_by_value();
but not this
Foo& a = function_returning_Foo_by_value();
?
What could possible go ...
9
votes
2answers
307 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
389 views
passing rvalues through `std::bind`
I want to pass an rvalue through std::bind to a function that takes an rvalue reference in C++0x. I can't figure out how to do it. For example:
#include <utility>
#include <functional>
...
9
votes
2answers
203 views
What is “Extending move semantics to *this” all about?
Please, could someone explain in plain English what is "Extending move semantics to *this"? I am referring to this proposal. All what am looking for is what is that & why do we need that. Note ...
9
votes
7answers
3k views
taking the address of a temporary object
§5.3.1 Unary operators, Section 3
The result of the unary & operator is a pointer to its operand. The operand shall be an lvalue or a qualified-id.
What exactly does "shall be" mean in this ...
8
votes
1answer
124 views
How can a returned object be assignable?
In Effective C++, Item 3, Scott Meyers suggests overloading operator* for a class named Rational:
class Rational { ... };
const Rational operator*(const Rational& lhs, const Rational& ...
8
votes
1answer
260 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. ...
8
votes
4answers
249 views
C++ rvalue temporaries in template
Can you please explain me the difference between mechanism of the following:
int function();
template<class T>
void function2(T&);
void main() {
function2(function()); // compiler ...
7
votes
3answers
406 views
Binding rvalue to non-const reference via pointer cast?
I don't understand how the following code compiles/doesn't compile:
struct Temp
{
int i;
};
int main(int argc, char * argv[])
{
//Temp &ref1 = (Temp){42}; // Error, as expected
Temp ...
7
votes
2answers
286 views
Why const for implicit conversion?
After extensive reading of ISO/IEC 14882, Programming language – C++ I'm still unsure why const is needed for implicit conversion to a user-defined type with a single argument constructor like the ...
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
2answers
198 views
I think I may have come up with an example of rvalue of array type
C++03 §4.2 N°1:
An lvalue or rvalue of type “array of N 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 the ...
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
2answers
165 views
Why is this rvalue call ambiguous?
Why is this rvalue call ambiguous? I can have AA and AA& and the compiler will know to use AA&. But when i add in the third option i get an error. Obviously AA&& is a better overload ...
5
votes
4answers
226 views
Argument type deduction, references and rvalues
Consider the situation where a function template needs to forward an argument while keeping it's lvalue-ness in case it's a non-const lvalue, but is itself agnostic to what the argument actually is, ...
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 ...
5
votes
1answer
149 views
rvalues and temporary objects in the FCD
It took me quite some time to understand the difference between an rvalue and a temporary object. But now the final committee draft states on page 75:
An rvalue [...] is an xvalue, a temporary ...
4
votes
2answers
166 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 ...
4
votes
1answer
102 views
Proper Implementation in the midst of no RValue implicit conversion
I ran into the problem that RValue does not allow implicit conversion. My questions is what implementation is better to "bypass" this limitation?
Here is example code to illustrate the issue:
...
4
votes
4answers
343 views
Do rvalue references allow dangling references?
Consider the below.
#include <string>
using std::string;
string middle_name () {
return "Jaan";
}
int main()
{
string&& danger = middle_name(); // ?!
return 0;
}
This ...
4
votes
1answer
158 views
C++ rvalue expression with destructor generates warning C4701 in Visual Studio 2010
The following C++ code, compiles without warning in Visual Studio 2010:
extern void callFunc( int, int );
struct str_wrapper
{
str_wrapper();
};
extern bool tryParseInt( const str_wrapper& str, ...
4
votes
5answers
410 views
Why do some c++ compilers let you take the address of a literal?
A C++ compiler that I will not name lets you take the address of a literal, int *p = &42;
Clearly 42 is an r-value and most compilers refuse to do so.
Why would a compiler allow this? What could ...
3
votes
6answers
197 views
What is the scope of a literal value, and how does the compiler allocate memory to it?
int x = 12;
12 is said to be integer literal, and therefore can't be used in the LValue.
How does the compiler allocate memory to a literals?
What is the scope of a literals?
Why can't we get ...
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
197 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. ...
3
votes
2answers
467 views
Are std::streams already movable?
GNU gcc 4.3 partially supports the upcoming c++0x standard: among the implemented features the rvalue reference. By means of the rvalue reference it should be possible to move a non-copyable object or ...
2
votes
1answer
74 views
Can an array or function lvalue be converted to an rvalue?
According to C++ Standard 2003:
An lvalue (3.10) of a non-function, non-array type T can be converted to an rvalue.
What does it mean that array and function cannot be converted to rvalue?
2
votes
2answers
277 views
How may I forbid calls to const member function of an rvalue object in C++ 2011?
The following code
#include <vector>
#include <string>
#include <iostream>
std::string const& at(std::vector<std::string> const& n, int i)
{
return n[i];
}
...
2
votes
1answer
200 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
229 views
Function with parameter type that has a copy-constructor with non-const ref chosen?
Some time ago I was confused by the following behavior of some code when I wanted to write a is_callable<F, Args...> trait. Overload resolution won't call functions accepting arguments by ...
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
5answers
85 views
Is a function return-value constant by default (an rvalue)?
I'm learning about rvalue references, and the tutorial told me this:
X foo();
X x;
x = foo();
Rather obviously, it would be ok, and much more efficient, to swap resource pointers (handles) ...
1
vote
2answers
64 views
Prefered form for returning an object/rvalue ref, from a lambda
If I have a class implementing move semantics:
class BigObject
{
public:
BigObject(something x = something()) { ... }
BigObject(const BigObject& other) { ... }
...
1
vote
5answers
88 views
Why don't rvalues have an address?
Why don't rvalues have a memory address? Are they not loaded into the RAM when the program executes or does it refer to the values stored in processor registers?
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.