Move semantics is the C++11 feature that allows a copy operation to be replaced by a more efficient "move" when the source object is an rvalue (typically a temporary)
188
votes
9answers
23k views
What are move semantics?
I just finished listening to the Software Engineering talk radio podcast interview with Scott Meyers regarding C++0x. Most of the new features made sense to me, and I am actually excited about C++0x ...
70
votes
3answers
3k views
What is “rvalue reference for *this”?
Came across a proposal called "rvalue reference for *this" in clang's C++11 status page.
I've read quite a bit about rvalue references and understood them, but I don't think I know about this. I also ...
112
votes
2answers
17k views
push_back vs emplace_back
I'm a bit confused regarding the difference between push_back and emplace_back.
void emplace_back(Type&& _Val);
void push_back(const Type& _Val);
void push_back(Type&& _Val);
As ...
69
votes
5answers
9k views
C++11 rvalues and move semantics confusion
I'm trying to understand rvalues references and move semantics of C++11.
What is the difference between those examples and which of them is going to do no vector copy:
First example
...
48
votes
2answers
2k views
What can I do with a moved-from object?
Does the standard define precisely what I can do with an object once it has been moved from? I used to think that all you can do with a moved-from object is do destruct it, but that would not be ...
18
votes
3answers
732 views
Can I list-initialize a vector of move-only type?
If I pass the following code through my GCC 4.7 snapshot, it tries to copy the unique_ptrs into the vector.
#include <vector>
#include <memory>
int main() {
using move_only = ...
61
votes
2answers
19k views
What is std::move()?
What is it?
What does it do?
When should it be used?
Good links are appreciated.
24
votes
4answers
4k views
Why no default move-assignment/move-constructor?
I'm a simple programmer. My class members variables most often consists of POD-types and STL-containers. Because of this I seldom have to write assignment operators or copy constructors, as these are ...
14
votes
2answers
715 views
initializer_list and move semantics
Am I allowed to move elements out of a std::initializer_list<T>?
#include <initializer_list>
#include <utility>
template<typename T>
void foo(std::initializer_list<T> ...
23
votes
5answers
1k 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 ...
22
votes
4answers
3k views
Move assignment operator and `if (this != &rhs)`
In the assignment operator of a class, you usually need to check if the object being assigned is the invoking object so you don't screw things up:
Class& Class::operator=(const Class& rhs) {
...
8
votes
3answers
1k views
How to enforce move semantics when a vector grows?
I have a std::vector of objects of a certain class A. The class is non-trivial and has copy constructors and move constructors defined.
std::vector<A> myvec;
If I fill-up the vector with A ...
12
votes
3answers
486 views
What is the advantage of using universal references in range-based for loops?
const auto& would suffice if I want to perform read-only operations. However, I have bumped into
for (auto&& e : v) // v is non-const
a couple of times recently. This makes me wonder:
...
10
votes
3answers
331 views
What constitutes a valid state for a “moved from” object in C++11?
I've been trying to wrap my head around how move semantics in C++11 are supposed to work, and I'm having a good deal of trouble understanding what conditions a moved-from object needs to satisfy. ...
10
votes
1answer
1k views
Is returning with `std::move` sensible in the case of multiple return statements?
I'm aware that it's normally not a good idea to return with std::move, i.e.
bigObject foo() { bigObject result; /*...*/ return std::move(result); }
instead of simply
bigObject foo() { bigObject ...
64
votes
3answers
3k views
When to make a type non-movable in C++11?
I was surprised this didn't show up in my search results, I thought someone would've asked this before, given the usefulness of move semantics in C++11:
When do I have to (or is it a good idea for ...
16
votes
3answers
893 views
C++ Move semantics and Exceptions
In the forthcoming C++0x standard, what happens when an exception is thrown within/during the move constructor?
Will the original object remain? or are both the original and move-to object in an ...
6
votes
2answers
220 views
Is it possible to std::move objects out of functions? (C++11)
This program tries to move a string out of a function and use it for the construction of another string:
#include <iostream>
#include <string>
#include <utility>
std::string ...
5
votes
4answers
359 views
Why parameters of universal reference needs to be casted, before used?
In the lecture about universal references, Scott Meyers (at approximately 40th minute) said that objects that are universal references should be converted into real type, before used. In other words, ...
8
votes
5answers
330 views
How can moved objects be used?
After moving an object, it must be destructable:
T obj;
func(std::move(obj));
// don't use obj and let it be destroyed as normal
But what else can be done with obj? Could you move another object ...
23
votes
1answer
612 views
Should all/most setter functions in C++11 be written as function templates accepting universal references?
Consider a class X with N member variables, each of some copiable and movable type, and N corresponding setter functions.
In C++98, the definition of X would likely look something like this:
class X
...
12
votes
4answers
4k views
C++11 move constructor
What would be the correct way to implement a move constructor considering the following class:
class C {
public:
C();
C(C&& c);
private:
std::string string;
}
Of course, the ...
10
votes
5answers
555 views
Understanding the benefits of move semantics vs template metaprogramming
I've read some descriptions about move semantics in C++11 and I wonder in what context it could be used.
Currently, many C++ math libraries use template metaprogramming to delay evaluation.
If M = A ...
22
votes
3answers
2k views
Is there any case where a return of a RValue Reference (&&) is useful?
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 ...
22
votes
2answers
420 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 ...
14
votes
3answers
845 views
Why does reallocating a vector copy instead of moving the elements? [duplicate]
Possible Duplicate:
How to enforce move semantics when a vector grows?
insert, push_back and emplace(_back) can cause a reallocation of a std::vector. I was baffled to see that the ...
14
votes
3answers
1k views
Why do some people use swap for move assignments?
For example, stdlibc++ has the following:
unique_lock& operator=(unique_lock&& __u)
{
if(_M_owns)
unlock();
unique_lock(std::move(__u)).swap(*this);
__u._M_device = 0;
...
13
votes
5answers
1k views
Making swap faster, easier to use and exception-safe
I could not sleep last night and started thinking about std::swap. Here is the familiar C++98 version:
template <typename T>
void swap(T& a, T& b)
{
T c(a);
a = b;
b = c;
}
...
12
votes
5answers
539 views
When should std::move be used on a function return value?
In this case
struct Foo {};
Foo meh() {
return std::move(Foo());
}
I'm pretty sure that the move is unnecessary, because the newly created Foo will be an xvalue.
But what in cases like these?
...
16
votes
2answers
351 views
Implicitly treating returned lvalue as rvalue
12.8 Copying and moving class objects [class.copy] §31 and §32 say:
in a return statement in a function with a class return type, when the expression is the name of a non-volatile automatic object ...
15
votes
4answers
1k views
Move semantics == custom swap function obsolete?
Recently, many questions pop up on how to provide your own swap function. With C++11, std::swap will use std::move and move semantics to swap the given values as fast as possible. This, of course, ...
7
votes
4answers
266 views
How does the compiler know to move local variables?
I'm curious as to exactly how this feature works. Consider something like
std::unique_ptr<int> f() { std::unique_ptr<int> lval(nullptr); return lval; }
This code compiles fine even for ...
11
votes
2answers
358 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 ...
5
votes
6answers
1k views
Move semantics - what it's all about? [duplicate]
Possible Duplicate:
Can someone please explain move semantics to me?
Could someone point me to a good source or explain it here what are the move semantics?
5
votes
1answer
479 views
Why discards std::forward constexpr-ness?
Being not declared constexpr, std::forward will discard constexpr-ness for any function it forwards arguments to. Why is std::forward not declared constexpr itself so it can preserve constexpr-ness?
...
4
votes
1answer
210 views
Will member subobjects of local variables be moved too if returned from a function?
The C++11 standard states that, if the conditions for copy elision are met (§12.8/31), the implementation shall treat a returned local lvalue variable and function parameters, as an rvalue first ...
4
votes
5answers
865 views
When will adding a move constructor and a move assignment operator really start make a difference?
Considering the high quality of today's compilers regarding return value optimization (both RVO and NRVO), I was wondering at what class complexity it's actually meaningful to start adding move ...
11
votes
2answers
235 views
Move constructor suppressed by comma operator
This program:
#include <iostream>
struct T {
T() {}
T(const T &) { std::cout << "copy constructor "; }
T(T &&) { std::cout << "move constructor "; }
};
int ...
11
votes
3answers
211 views
Are returned locals automatically xvalues
Following on from a comment I made on this:
passing std::vector to constructor and move semantics
Is the std::move necessary in the following code, to ensure that the returned value is a xvalue?
...
9
votes
1answer
291 views
Does an exception use move semantics when thrown in C++11?
http://www.drdobbs.com/cpp/practical-c-error-handling-in-hybrid-env/197003350?pgno=4
In this article Herb Sutter explains that throwing an exception requires a copy of the exception as it's created ...
9
votes
2answers
604 views
Is it possible to move a boost::optional?
I've been trying to define a defaulted move constructor in a class with a boost::optional member variable.
#include <boost/optional.hpp>
#include <utility>
#include <vector>
struct ...
7
votes
3answers
2k views
Proper way (move semantics) to return a std::vector from function calling in C++11
I want to fill std::vector (or some other STL container):
class Foo {
public:
Foo(int _n, const Bar &_m);
private:
std::vector<Foo> fooes_;
}
1.Good looking ctor, expensive ...
3
votes
2answers
2k views
move semantics std::move how use it
#include <type_traits>
template<class T>
typename std::remove_reference<T>::type&& move(T&& v)
{
return v;
}
void main()
{
int a;
move(a);
}
Why ...
1
vote
3answers
259 views
Does it make sense to reuse destructor logic by using std::swap in a move assignment operator?
Consider the following:
class Example : boost::noncopyable
{
HANDLE hExample;
public:
Example()
{
hExample = InitializeHandle();
}
~Example()
{
if (hExample == ...
65
votes
1answer
2k views
Workarounds for no 'rvalue references to *this' feature
I have a proxy container class around a movable object, and wish the proxy to be able to implicitly yield an rvalue reference to the underlying object, but only when the proxy itself is being moved.
...
12
votes
5answers
487 views
In what scenarios should I expect to explicitly need to implement a move constructor and move assignment operator?
Given that a class actually is moveable, manually implementing the move constructor and move assignment operator for a class quickly become tedious.
I was wondering when doing so is actually a heavy, ...
11
votes
2answers
1k views
How does std::move() transfer values into RValues?
I just found myself not fully understanding the logic of std::move().
At first, I googled it but seems like there are only documents about how to use std::move(), not how its structure works.
I ...
18
votes
4answers
1k 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, ...
10
votes
1answer
233 views
Ramification of assignment operators with values instead of references
This question comes from issues raised by this answer.
Normally, we define copy assignment operators for type T as T& operator=(const T&), and move assignment operators for type T as T& ...
8
votes
2answers
897 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 ...

