Tagged Questions
An rvalue reference is a language feature in C++11 (formerly called C++0x) representing a reference to an rvalue. They can be used to implement move semantics and perfect forwarding.
55
votes
2answers
2k views
What does T&& mean in C++11?
I've been looking into some of the new features of C++11 and one I've noticed is the double ampersand in declaring variables, like T&& var.
For a start, what is this beast called? (I wish ...
51
votes
6answers
2k views
Rule-of-Three becomes Rule-of-Five with C++11?
So, after watching this wonderful lecture on rvalue references, I thought that every class would benefit of such a "move constructor", template<class T> MyClass(T&& other) edit and of ...
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
520 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)
{
...
26
votes
3answers
844 views
Advantages of using forward
In perfect forwarding, std::forward is used to convert the named rvalue references t1 and t2 to unnamed rvalue references. What is the purpose of doing that? How would that affect the called function ...
20
votes
2answers
307 views
Are value parameters implicitly moved when returned by value?
Consider the following function:
Foo foo(Foo x)
{
return x;
}
Will return x invoke the copy constructor or the move constructor? (Let's leave NRVO aside here.)
To investigate, I wrote a simple ...
17
votes
5answers
347 views
Standard library containers producing a lot of copies on rvalues in GCC
I'm writing a app for both linux & windows, and noticed that the GCC build is producing a lot of useless calls to the copy constructor.
Here's an example code to produce this behavior:
struct A
...
17
votes
4answers
597 views
Use of rvalue reference members?
I was wondering what use an rvalue reference member has
class A {
// ...
// Is this one useful?
Foo &&f;
};
Does it have any benefits or drawbacks compared to an lvalue reference ...
16
votes
1answer
168 views
Are literal numbers mutable or not?
Naturally, this won't compile:
int &z = 3; // error: invalid initialization of non-const reference ....
and this will compile:
const int &z = 3; // OK
Now, consider:
const int y = 3;
...
15
votes
5answers
515 views
How to actually implement the rule of five?
UPDATE at the bottom
q1: How would you implement the rule of five for a class that manages rather heavy resources,
but of which you want it to be passed around by value because that greatly ...
15
votes
4answers
438 views
Can std::string overload “substr” for rvalue *this and steal resources?
It just occurred to me I noticed that std::string's substr operation could be much more efficient for rvalues when it could steal the allocated memory from *this.
The Standard library of N3225 ...
14
votes
3answers
431 views
Passing/Moving parameters of a constructor in C++0x
If I have a constructor with n parameters such that any argument to that can be an rvalue and lvalue. Is it possible to do support this with move semantics for the rvalues without writing 2^n ...
14
votes
4answers
708 views
Does D have something akin to C++0x's move semantics?
A problem of "value types" with external resources (like std::vector<T> or std::string) is that copying them tends to be quite expensive, and copies are created implicitly in various contexts, ...
14
votes
4answers
659 views
How to reduce redundant code when adding new c++0x rvalue reference operator overloads
I am adding new operator overloads to take advantage of c++0x rvalue references, and I feel like I'm producing a lot of redundant code.
I have a class, tree, that holds a tree of algebraic operations ...
13
votes
2answers
2k views
C++0x rvalue references - lvalues-rvalue binding
This is a follow-on question to
http://stackoverflow.com/questions/2748866/c0x-rvalue-references-and-temporaries
In the previous question, I asked how this code should work:
void f(const ...
12
votes
1answer
126 views
Why does the rvalue overload of `operator<<` for `basic_ostream` return an lvalue reference?
§27.7.3.9 defines the following overload for operator<<:
template <class charT, class traits, class T>
basic_ostream<charT, traits>&
operator<<(basic_ostream<charT, ...
12
votes
7answers
344 views
What kinds of code need to be aware of rvalue references?
I see lots of people having problems understanding rvalue references. Will "ordinary" C++ code (e.g., that uses the standard library, but doesn't implement it) need to know about rvalue references ...
11
votes
4answers
177 views
Move Constructors and Static Arrays
I've been exploring the possibilities of Move Constructors in C++, and I was wondering what are some ways of taking advantage of this feature in an example such as below. Consider this code:
...
11
votes
3answers
420 views
Returning a RValue Reference in C++0x
Is there a reason when a function should return a RValue Reference? A technique, or trick, or a idiom or pattern?
MyClass&& func( ... );
I am aware of the danger returning references in ...
11
votes
3answers
321 views
Do rvalue references to const have any use?
I guess not, but I would like to confirm. Is there any use for const Foo&&, where Foo is a class type?
11
votes
2answers
303 views
Why is T&& instantiated as int&?
Can anyone please explain why this compiles and why does t end up with type int&?
#include <utility>
void f(int& r)
{
++r;
}
template <typename Fun, typename T>
void g(Fun ...
11
votes
1answer
527 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) : ...
11
votes
4answers
761 views
C++0x “move from” container
In C++0x, we get an efficiency boost concerning containers with std::move:
SomeExpensiveType x = /* ... */;
vec.push_back(std::move(x));
But I can't find anything going the other way. What I mean ...
10
votes
1answer
126 views
What is the type of a named rvalue reference?
Consider the following code:
int&& x = 42;
static_assert(std::is_same<decltype( x ), int&&>::value, "&&");
static_assert(std::is_same<decltype((x)), int& ...
10
votes
1answer
245 views
Why use identity in forward definition for C++0x rvalue reference?
In A Brief Introduction to Rvalue References, forward is defined as follows:
template <typename T>
struct identity { typedef T type; };
template <typename T>
T ...
10
votes
6answers
1k views
C++0x rvalue references and temporaries
(I asked a variation of this question on comp.std.c++ but didn't get an answer.)
Why does the call to f(arg) in this code call the const ref overload of f?
void f(const std::string &); //less ...
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
285 views
Is it necessary to define move constructors from different classes?
Consider the following:
struct X
{
Y y_;
X(const Y & y) :y_(y) {}
X(Y && y) :y_(std::move(y)) {}
};
Is it necessary to define a constructor like the second one in order ...
9
votes
3answers
433 views
Some clarification on rvalue references
First: where are std::move and std::forward defined? I know what they do, but I can't find proof that any standard header is required to include them. In gcc44 sometimes std::move is available, and ...
8
votes
2answers
181 views
What is an rvalue reference to function type?
I have recently wrapped my mind around the C++0x's concepts of glvalues, xvalues and prvalues, as well as the rvalue references. However, there's one thing which still eludes me:
What is "an rvalue ...
8
votes
1answer
401 views
What is multimap::emplace() and move()?
I was viewing the MSDN doc about multimap and find that it has a member function multimap::emplace(). Below is the example of that member function.
int main( ) {
using namespace std;
...
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
2answers
520 views
C++0x: rvalue reference versus non-const lvalue
When programming in C++03, we can't pass an unnamed temporary T() to a function void foo(T&);. The usual solution is to give the temporary a name, and then pass it like:
T v;
foo(v);
Now, ...
7
votes
2answers
147 views
C++0x T operator+(const T&, T&&) pattern, still needs move?
Some time ago I was told, that the usual pattern to implement two-ary operators needs a final move in the return.
Matrix operator+(const Matrix &a, Matrix &&b) {
b += a;
return ...
7
votes
2answers
100 views
rvalue references in Visual Studo 2010
What are the differences between rvalue references as implemented in Visual Studio 2010 and as specified in the C++11? Are there any particular pitfalls to watch out for when using revalue references ...
7
votes
2answers
171 views
Correct use of `= delete` for methods in classes
Is the following snipplet correct for un-defining all otherwise methods and constructors for a class?
struct Picture {
// 'explicit': no accidental cast from string ti Picture
explicit ...
7
votes
2answers
415 views
min and perfect forwarding
The min algorithm is normally expressed like this:
template <typename T>
const T& min(const T& x, const T& y)
{
return y < x ? y : x;
}
However, this does not allow ...
7
votes
3answers
483 views
Problem with “moveable-only types” in VC++ 2010
I recently installed Visual Studio 2010 Professional RC to try it out and test the few C++0x features that are implemented in VC++ 2010.
I instantiated a std::vector of std::unique_ptr, without any ...
7
votes
4answers
2k views
Is returning by rvalue reference more efficient?
for example:
Beta_ab&&
Beta::toAB() const {
return move(Beta_ab(1, 1));
}
6
votes
2answers
210 views
“id” function in C++0x
Reading this answer regarding returning rvalue references from function got me thinking, how can I write an id function in C++0x.
Basically, I want id to be a do nothing function, a function that ...
6
votes
2answers
180 views
Intuitive understanding of functions taking references of references
For some reason, this is eluding my intuition, and I cannot find any explanation on the internet. What does it mean for a C++ function to take a reference of a reference? For example:
void ...
6
votes
3answers
127 views
Conditional compilation for move operations
How can I check whether my compiler supports rvalue references or not? Is there a standard preprocessor macro, or do different compilers have different macros? Ideally, I would want to write this:
...
6
votes
1answer
163 views
Operator overload which permits capturing with rvalue but not assigning to
Is it possible to design and how should I make overloaded + operator for my class C to have this possible:
C && c = c1 + c2;
but this not possible:
c1 + c2 = something;
Edit:
I changed ...
6
votes
5answers
765 views
Passing non-const references to rvalues in C++
In the following line of code:
bootrec_reset(File(path, size, off), blksize);
Calling a function with prototype:
static void bootrec_reset(File &file, ssize_t blksize);
I receive this error:
...
6
votes
1answer
247 views
Can someone explain rvalue references with respect to exceptions?
Lets say I've this exception class:
struct MyException : public std::exception
{
MyException(const std::exception &exc) : std::exception(exc)
{
cout << "lval\n";
}
...
6
votes
1answer
261 views
Is it bad form to provide only a move constructor?
I would like to return a noncopyable object of type Foo from a function. This is basically a helper object which the caller will use to perform a set of actions, with a destructor to perform some ...
6
votes
1answer
159 views
Do rvalue references allow implicit conversions?
Is the following code legal?
std::string&& x = "hello world";
g++ 4.5.0 compiles this code without any problems.
6
votes
1answer
279 views
Move from *this in an rvalue method?
In C++11, methods can be overloaded on whether or not the expression that denotes the object on which the method is called is an lvalue or an rvalue. If I return *this from a method called via an ...
6
votes
1answer
1k views
How can I get this code involving unique_ptr to compile?
#include <vector>
#include <memory>
using namespace std;
class A {
public:
A(): i(new int) {}
A(A const& a) = delete;
A(A &&a): i(move(a.i)) {}
...
6
votes
2answers
713 views
Are return values going to be passed by rvalue reference in c++0x?
Let's say I have a function:
typedef std::vector<int> VecType;
VecType randomVector();
int processing()
{
VecType v = randomVector();
return std::accumulate(v.begin(), v.end(), 0);
}
...