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)

learn more… | top users | synonyms

19
votes
3answers
1k views

Why do we copy then move?

I saw code somewhere in which someone decided to copy an object and subsequently move it to a data member of a class. This left me in confusion in that I thought the whole point of moving was to avoid ...
1
vote
3answers
147 views

C++11: call by value, move semantics and inheritance

Let's say I have a class which I plan to directly expose as an instantiatable class to the programmer: class Base { public: Base(std::string text) : m_text(std::move(text)) {} virtual ~Base() ...
1
vote
1answer
17 views

map of structs using unique ptr : does not build on visual but works on clang

I'm having these two simple codes : void f(){ std::map<int,std::unique_ptr<int>> map_; std::unique_ptr<int> p; map_[42] = std::move(p); } does build struct test_s{ ...
3
votes
1answer
121 views

How do you convert a lvalue to an rvalue? And what happens to the `new` lvalue?

I would like to move an object into a std::vector using std::vector::push_back(). This would seem to be possible since there is a std::vector::push_back(value_type&& val) function. But due ...
2
votes
3answers
142 views

move constructor: how to handle container attribute? [closed]

How to properly initialize container attribute avoiding reconstructing contained objects? class BAR { ... }; class FOO { public: FOO(FOO &&f) { // ???? } ...
4
votes
1answer
181 views

Why was the std::pair class standard changed to disallow types with only a nonconstant copy constructor in C++11?

I am reading through Nicolai M. Josuttis' "The C++ Standard Library (Second Edition)" and have just reached the section on std::pair. The author notes that: Since C++11, a pair<> using a ...
2
votes
1answer
156 views

std::vector resizing using unsafe move when no copy is provided

I made a class to encapsulate some functionality from OpenGL textures, my requirements are pretty simple so I don't need much more than being able to control the texture data and types. My class is ...
5
votes
2answers
125 views

Are member variables in temporary objects implicitly moved when possible?

In my classes I use std::vector etc. as member variables, which come with their own move constructors. I don't explicitly declare move constructors for my classes and they are not implicitly declared ...
7
votes
1answer
211 views

Should std::move be used in return-statements for effeciency?

I cannot figure out if the std::move in the following code does anything good or that it is completely wrong? The class Object has both Move and Copy constructor defined. First: With Move: ...
7
votes
6answers
1k 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 ...
18
votes
3answers
742 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 = ...
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 ...
0
votes
2answers
42 views

Implementing a move constructor(rvalue reference) for an array class

I have an array class I grabbed off of a website that gives an example of a move constructor. How would one implement this move constructor in an example program however? I feel like I understand the ...
3
votes
5answers
82 views

C/C++: efficient way to use a vector returned by a function

Suppose we have a vector called V of type vector<int> which is a private member of a class. We also have this public function of the class: vector<int> getV(){ return V; } now if I ...
4
votes
1answer
254 views

Why does this call the copy constructor, not the move constructor?

I have a class, PlayerInputComponent: .h: class PlayerInputComponent { public: PlayerInputComponent(PlayerMoveComponent& parentMoveComponent_, std::unique_ptr<IRawInputConverter> ...
-2
votes
1answer
41 views

Unique pointer to stream

#include <memory> #include <istream> typedef std::unique_ptr<std::istream> myType; class myClass{ myType myStream; public: myClass(myType a_stream){ myStream = ...
1
vote
1answer
73 views

What is the best way to declare multiple argument constructor in C++11 [duplicate]

When creating a class like this one: class Test { public: ... private: string s1_; string s2_; vector<int> v_; }; What is the best way to declare a constructor accepting two ...
0
votes
1answer
76 views

Why does std::weak_ptr not have a move constructor or move assignment operator?

Looking through boost's 1.53 headers for weak_ptr, I was surprised to see that move assignment and move constructors were implemented even though they weren't documented. From this documentation, ...
0
votes
3answers
53 views

Forward or Move

Are these valid usage of move and forward? Are f3 and f4 the same? Is it dangerous to do so? Thank you! #include <utility> class A {}; A f1() { A a; return a; // Move constructor is ...
1
vote
1answer
59 views

How do I test if a std::thread is moved from?

I have a movable noncopyable class with a std::thread member. When the class destructor runs I need to do some cleanup work and join the thread. If the class is moved from I need the destructor to ...
5
votes
2answers
243 views

Move semantics and operator overloading

This is related to this answer provided by Matthieu M. on how to utilize move semantics with the + operator overloading (in general, operators which don't re-assign directly back to the left param). ...
4
votes
1answer
212 views

Why two object constructed by destructors are called for three times

Here is my implementation of some C++11 study examples. I let all the constructors and destructor to print to console. But surprisingly, I get constructor called twice but destructor three times. ...
7
votes
1answer
221 views

why vector's move ctor does not deduce a noexcept()?

Why move constructor for std::vector with custom allocator does not deduce a noexcept() from allocator's behaviours? This leads to the class that encapsulates such vector cannot form the (other) ...
8
votes
2answers
311 views

Why would const-ness of a local variable inhibit move semantics for the returned value?

struct STest : public boost::noncopyable { STest(STest && test) : m_n( std::move(test.m_n) ) {} explicit STest(int n) : m_n(n) {} int m_n; }; STest FuncUsingConst(int n) { ...
6
votes
5answers
283 views

what is the behaviour of compiler generated move constructor?

does std::is_move_constructible<T>::value == true implies that T has a usable move constructor? if so, what is the default behaviour of it? consider the following case: struct foo { int* ...
5
votes
1answer
232 views

Does no default constructor result in no move constructor?

If a class doesn't have a default constructor as it should always initialize it's internal variables, would it follow that it shouldn't have a move constructor? class Example final { public: ...
4
votes
2answers
173 views

Move Semantics with unique_ptr

I am using Visual Studio 2012 Update 2 and am having trouble trying to understand why std::vector is trying to use the copy constructor of unique_ptr. I have looked at similar issues and most are ...
35
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 ...
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 ...
6
votes
1answer
99 views

To return std::move (x) or not?

Are std::vector<double> foo () { std::vector<double> t; ... return t; } and std::vector<double> foo () { std::vector<double> t; ... return ...
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. ...
8
votes
3answers
234 views

Should a type be move-only, just because copying may be expensive?

I have a type that is copyable, but may be expensive to copy. I have implemented the move constructor and move assignment. But I have performance issues where folks forget to call move() when passing ...
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 ...
1
vote
2answers
119 views

Move constructor and char array argument

struct Foo { char data[100]; template<int T> Foo(char (&&var)[T]) { data = std::move(var); var = 0; } }; int main() { char v[100]; ...
0
votes
3answers
105 views

move constructor and assignment operator impletemented using copy-and-swap idiom

I don't understand in the following example why the paramater in the assignement operator use the copy constructor and not the move constructor to be builded struct Foo { int data; Foo() ...
1
vote
1answer
59 views

operator+() choose rvalue reference variation instead of const lvalue variation

I am trying to understand what is happening in the following code. It just an addition of 2 std::array and I assume that the output is: C1 = const C1& + const C2& Instead it is: ...
1
vote
1answer
151 views

Impact of returning const value types in C++11 on move semantics

I'm not clear on the impact that returning const values has on move semantics in C++11. Is there any difference between these two functions, which return data members? Is const still redundant in ...
0
votes
1answer
79 views

moving elements in an vector

I am trying to move elements in a vector, here is a simplified example #include <iostream> #include <vector> struct A { A(size_t i) noexcept : i(i) { std::cout << "A-" ...
4
votes
2answers
139 views

Why does resize() cause a copy, rather than a move, of a vector's content when capacity is exceeded? [duplicate]

Given class X below (special member functions other than the one explicitly defined are not relevant for this experiment): struct X { X() { } X(int) { } X(X const&) { std::cout ...
-1
votes
1answer
78 views

Vector with unique_ptr-s

I have code like this: #include <memory> #include <vector> namespace daq { class Animal { public: Animal(){}; }; class Pig : public Animal { public: Pig() : Animal () {}; }; ...
3
votes
2answers
232 views

segmentation fault when moving std::vector [closed]

The following program crashes with segmention fault: #include <iostream> #include <vector> using namespace std; struct data { data() : a(random()), b(random()), v({random(), random(), ...
18
votes
2answers
297 views

Move semantics & argument evaluation order

Considering the following: std::string make_what_string( const std::string &id ); struct basic_foo { basic_foo( std::string message, std::string id ); }; struct foo : public basic_foo { ...
7
votes
2answers
482 views

When should compiler generate move constructor?

I use VS11 and use following: class ContextWrapper { public: ContextWrapper() { } //it should be defaulted I *guess* in order to have automatic move constructor ? // no support in ...
2
votes
2answers
113 views

Extend std::vector to move elements from other vector type

Let's assume I have a non-STL vector type that is compatible with std::vector by an operator std::vector<T>. Is it possible to move its elements to a std::vector instead of the default copy ...
3
votes
3answers
135 views

std::move vs. compiler optimization

For example: void f(T&& t); // probably making a copy of t void g() { T t; // do something with t f(std::move(t)); // probably something else not using "t" } Is void f(T ...
3
votes
4answers
195 views

Move semantics to avoid temporary object creation

I am trying to do operations between large objects and I experiment with r-value references to avoid temporary object creations. The experiment is the following code, but the result is not what I ...
2
votes
3answers
93 views

Will compilers apply move semantics automatically in a setter method?

I want to know if the compiler is allowed to automatically use the move constructor for wstring in the following setter method (without an explicit call to std::move): void SetString(std::wstring ...
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 ...
2
votes
2answers
149 views

Should move semantics be used in constructor chains?

Suppose I have the following two classes: class Person { public: Person(string name, string surname) : _name(move(name)), _surname(move(surname)) { } ... private: ...
29
votes
2answers
1k views

Can I typically/always use std::forward instead of std::move?

I've been watching Scott Meyers' talk on Universal References from the C++ and Beyond 2012 conference, and everything makes sense so far. However, an audience member asks a question at around 50 ...

1 2 3 4 5 7