The move-semantics tag has no wiki summary.
40
votes
7answers
3k views
Can someone please explain move semantics to me?
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 ...
30
votes
2answers
4k 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 ...
25
votes
2answers
350 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 ...
20
votes
2answers
314 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 ...
15
votes
4answers
2k views
C++0x rvalues and move semantics confusion
I'm trying to understand rvalues references and move semantics of C++0x.
What is the difference between those examples and which of them is going to do no vector copy:
First example
...
14
votes
4answers
737 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, ...
13
votes
1answer
144 views
Is parameter binding sequenced after argument evaluation?
Suppose I have the following function:
void foo(std::vector<int> vec, int n);
If I call the function like this:
std::vector<int> numbers { 2, 3, 5, 7, 11, 13, 17, 19 };
...
12
votes
4answers
230 views
Is specializing std::swap deprecated now that we have move semantics?
This is how std::swap looks like in C++11:
template<typename T>
void swap(T& x, T& y)
{
T z = std::move(x);
x = std::move(y);
y = std::move(z);
}
Do I still have to ...
12
votes
5answers
795 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;
}
...
11
votes
4answers
193 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
354 views
Initializer-list-constructing a vector of noncopyable (but movable) objects
One can push_back rvalues of a noncopyable-but-movable type into a vector of that type:
#include <vector>
struct S
{
S(int);
S(S&&);
};
int main()
{
std::vector<S> ...
11
votes
3answers
445 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 ...
10
votes
3answers
262 views
How to handle missing 'emplace_range' in C++0x STL?
I have two containers, let's say they're defined like this:
std::vector<std::unique_ptr<int>> a;
std::vector<std::unique_ptr<int>> b;
Assume both a and b are populated. I ...
9
votes
3answers
181 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) {
...
9
votes
2answers
183 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> ...
9
votes
3answers
353 views
When will a C++0x compiler make RVO and NRVO outperform move semantics and const reference binding?
Consider the case when "whole" objects with move semantics enabled are returned from functions, as with std::basic_string<>:
std::wstring build_report() const
{
std::wstring report;
...
...
9
votes
3answers
260 views
stealing inside the move constructor
During the implementation of the move constructor of a toy class, I noticed a pattern:
array2D(array2D&& that)
{
data_ = that.data_;
that.data_ = 0;
height_ = that.height_;
...
9
votes
2answers
293 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
4answers
818 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 ...
9
votes
2answers
211 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 ...
8
votes
2answers
137 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 = ...
8
votes
2answers
329 views
move semantics std::move
I don't understand very well the std::move function
template <class T>
typename remove_reference<T>::type&&
move(T&& a)
{
return a;
}
why remove_reference ?
could ...
7
votes
4answers
159 views
combining two constructors that copy and move
Currently, one of my toy class templates has two constructors that look very similar:
optional(const T& x)
{
construct(x);
}
optional(T&& x)
{
construct(std::move(x));
}
Can I ...
7
votes
2answers
173 views
Questions about postblit and move semantics
I have already asked a similar question a while ago, but I'm still unclear on some details.
Under what circumstances is the postblit constructor called?
What are the semantics of moving an object? ...
7
votes
5answers
249 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 ...
7
votes
2answers
221 views
Can a stack have an exception safe method for returning and removing the top element with move semantics?
In an answer to a question about std::stack::pop() I claimed that the reason pop does not return the value is for exception safety reason (what happens if the copy constructor throws).
@Konrad ...
6
votes
3answers
135 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
268 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 ...
5
votes
1answer
135 views
Is this non-copyable map legal c++11? GCC 4.7 and MSVS 2010 allow it. Clang 3.1 does not
I have created a non-copyable map which I cannot get to compile with clang. Since clang is meant to be very standards compliant I was wondering if my code was legal. MSVS 2010 and GCC 4.7 compile this ...
5
votes
3answers
137 views
Are moved-from objects required to be destructed?
If I move-construct a from b, is it still necessary to destruct b, or can I get away without doing so?
This question crossed my mind during the implementation of an optional<T> template. ...
5
votes
4answers
180 views
What kinds of types does qsort not work for in C++?
std::sort swaps elements by using std::swap, which in turn uses the copy constructor and assignment operators, guaranteeing that you get correct semantics when exchanging the values.
qsort swaps ...
5
votes
2answers
171 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
6answers
558 views
What optimization does move semantics provide if we already have RVO?
As far as I understand one of the purposes of adding move semantics is to optimize code by calling special constructor for copying "temporary" objects. For example, in this answer we see that it can ...
5
votes
2answers
429 views
Am I the only one who finds std::move a little too difficult to understand?
So I have been reading about std::move, std::forward, rvalues, lvalues ad so on in SO and other places. But I find that I can't grasp it. Even though I sometimes get into fixes, I think I understand ...
4
votes
2answers
89 views
Does moving an element from an STL container remove it from that container?
I have a Foobar class with a sayHello() method that outputs "Well hello there!". If I write the following code
vector<unique_ptr<Foobar>> fooList;
fooList.emplace_back(new Foobar());
...
4
votes
1answer
163 views
Compile error when calling a move overloaded function with an implicitly convertible object
This program does not compile using clang++ test.cpp -std=c++0x:
class A
{
public:
A() {}
A(const A&) {}
A(A&&) {}
A& operator = (const A&) { return *this; }
...
4
votes
1answer
152 views
The move function in unique_ptr C++03 emulation
I'm trying to understand how C++03 emulation of unique_ptr is implemented. unique_ptr is quite like std::auto_ptr but safer. It spits out compiler errors in cases where auto_ptr would have transferred ...
4
votes
4answers
232 views
c++ - Store pointers or objects in classes?
Just a design/optimization question. When do you store pointers or objects and why? For example, I believe both of these work (barring compile errors):
class A{
std::unique_ptr<Object> ...
4
votes
6answers
374 views
Move semantics - what it's all about? [closed]
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?
4
votes
3answers
586 views
Proper way (move semantics) to return a std::vector from function calling in C++0x
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 ...
4
votes
1answer
173 views
do compilers automatically use move semantics when a movable object is used for the last time
I've been studying rvalue references lately and came to a conclusion that it's quite advantageous to use pass-by-value everywhere where complete copy of an object will be made (for complete ...
4
votes
5answers
520 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 ...
3
votes
1answer
77 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 ...
3
votes
1answer
130 views
C++11 File Streams
Has C++11 move semantics made the use of std::ifstream and std::ofstream easier or safer with regards to exceptions? I guess it depends on the standard library aswell. Any differences there between ...
3
votes
2answers
310 views
C++11 overload of `M operator+(M&&,M&&)`
Update: clarification, more clear focus and shortened example:
Can I circumvent the M op+(M&&,M&&) overload? Assuming, I want good handling of RValues? I guess the other three ...
3
votes
6answers
183 views
move semantics and Lifetime of variables when binding lvalue to rvalues reference
just to be sure to well understand what is under the hood... questions are in the code as comments
void test(int && val)
{
val=4;
}//val is destroyed here ?
int main()
{ ...
3
votes
2answers
711 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 ...
3
votes
2answers
296 views
How to achieve “optimal” operator overload-resolution in arithmetic expressions with rvalues?
first of all, I apologize for the overly verbose question. I couldn't think of any other way to accurately summarize my problem... Now on to the actual question:
I'm currently experimenting with ...
3
votes
2answers
160 views
Calling base class move ctor [C++0x]
Which is the right way to call base class move ctor?
this (works in MSVC2010, but not in CBuilder2010):
struct Foo
{
Foo(Foo&& other) { }
};
struct Bar : public Foo
{
...
3
votes
1answer
322 views
Special member functions in C++0x
The Wikipedia article about special member functions doesn't contain any reference to move constructors and move assignment operators.
I would like to update the entry but I'm not sure what the 0x ...