In C++11 a move constructor is a special member function similar to a copy constructor, but taking an rvalue-reference parameter.

learn more… | top users | synonyms

0
votes
2answers
86 views

How do I write move constructor and assignment operator for a class which has a private object as property?

I learned Move Constructors today. I read this answer, and I tried to apply the move constructor example in it to my code. class UnicodeString { public: enum ENDIANNESS_TYPE ...
3
votes
1answer
89 views

Use std::move in C++11 move constructor with uniform initialization syntax

I have this simple class: struct Worker { Worker() : done{false} {} Worker(const Worker& rhs) : done{rhs.done}, qworker{} {} Worker(Worker &&rhs) : done{rhs.done} ...
2
votes
0answers
94 views

Why there is no implicitly generated move constructor? [duplicate]

Say, I have a class with a movable resource as its member: struct A { std::vector<int> v; }; There is an implicitly generated copy constructor, which works perfectly and is implemented ...
1
vote
1answer
65 views

What ctor/assignment operator should a vector class have?

I'm writing my own vector class (a container for x, y values) and I'm not really sure what constructors/assignment operators I should implement on my own and what I can count on the compiler to ...
1
vote
2answers
92 views

Object deleted because of move constructor

I am trying to create a function running in a dedicated thread which reads from a serial port. But I have trouble passing the connection to the thread. I reduced my code to the following example: ...
1
vote
2answers
76 views

About move constructor

I have three questions: A::str's memory allocated in the scope of function f. After moving it to the element in global var vec, is the block of memory still safe when out the scope of f? For struct ...
2
votes
2answers
110 views

Move constructors and inheritance

I am trying to understand the way move constructors and assignment ops work in C++11 but I'm having problems with delegating to parent classes. The code: class T0 { public: T0() { puts("ctor ...
1
vote
1answer
91 views

Can't get move constructor to run

C++11 I'm having trouble using the move constructor. I have a simple container class, called Number, whose only data member is an integer. I have the following code: //Number.h #ifndef NUMBER_H ...
1
vote
4answers
143 views

unique_ptr, move constructor, and why always attempt to access private member

I am encountering this problem frequently and I believe a move constructor is in order but I think the copy constructor is the problem and hiding it does not seem to work. The code: template ...
1
vote
2answers
147 views

Does std::vector::push_back have pre-conditions?

In the comments on Andrzej's move constructor article, I posted that a moved from object can have any member function called on it that does not have a pre-condition. I gave the example ...
7
votes
2answers
174 views

Move constructor signature

From this reference, it allows a const rvalue as a move constructor Type::Type( const Type&& other ); How can a movable object be const? Even if this was technically allowed, is there a ...
0
votes
1answer
102 views

Neither copy nor move constructor called [duplicate]

Possible Duplicate: Why copy constructor is not called in this case? What are copy elision and return value optimization? Can anybody explain to me why the following program yields output ...
3
votes
3answers
215 views

move constructor overkill

I have a class that holds a pointer to a large chunk of allocated memory and lots of primitive type members. I'm getting my head around move constructors and think this is a perfect opportunity to use ...
10
votes
1answer
204 views

How is the C++ synthesized move constructor affected by volatile and virtual members?

Look at the following code: struct node { node(); //node(const node&); //#1 //node(node&&); //#2 virtual //#3 ~node (); node* volatile ...
9
votes
1answer
184 views

move constructor not being called as expected

I'm new to C++0x and I'm trying to wrap my head around rvalue references and move constructors. I'm using g++ 4.4.6 with -std=c++0x, and I'm confused by the following piece of code: class Foo ...
6
votes
2answers
235 views

Why do I need to use std::move in the initialization list of a move-constructor?

Let's say I have a (trivial) class, which is move-constructible and move-assignable but not copy-constructable or copy-assignable: class movable { public: explicit movable(int) {} ...
1
vote
2answers
159 views

When Does Move Constructor get called?

I'm confused about when a move constructor gets called vs a copy constructor. I've read the following sources: Move constructor is not getting called in C++0x Move semantics and rvalue references ...
0
votes
1answer
287 views

VC10 unordered_set/map move constructor bug?

It seems that the move constructors of unordered_set/map under VC10 (Visual Studio 2010) puts the right hand side to an undefined state after being invoked, causing other operations (such as 'insert') ...
1
vote
0answers
156 views

Alternative for move constructors with side effects?

I am writing a library that provides a class A and supports evaluations with it (assignment and expressions with infix notation basically). Lets not complicate things unnecessarily and look at the ...
4
votes
3answers
167 views

C++11 move constructor with side effects

In C++ one cannot rely on the copy constructor being called from a return statement because of a special clause in the standard that allows a compiler to omit a call to the copy constructor resulting ...
1
vote
3answers
252 views

Are all the std::move()-based std::swap() implementations I'm seeing buggy? [duplicate]

Possible Duplicate: What can I do with a moved-from object? For example, see this code: template<class T> void swap(T& a, T& b) { T tmp(std::move(a)); a = ...
7
votes
1answer
563 views

vector::push_back insists on using copy constructor though a move constructor is provided

I was receiving a strange error from gcc and cannot figure out why. I made the following example code to make the problem more clear. Basically, there is a class defined, for which I make its copy ...
3
votes
3answers
366 views

Should a move constructor take a const or non-const rvalue reference?

In several places I've seen the recommended signatures of copy and move constructors given as: struct T { T(); T(const T& other); T(T&& other); }; Where the copy constructor ...
0
votes
1answer
24 views

In C++03 auto_ptr why isn't compiler generated copy-ctor called?

I understand how auto_ptr works in C++03. It is based on this trick. The trick uses a user-defined conversion to steal the pointer from one object to another when code such as this auto_int ...
1
vote
4answers
94 views

Do I really have to nullify all the members in move constructor/move asigment or just pointers?

I'm having really hard time to learn nullifying the "other" object, I've just read the whole big article about move semantics here and I'm disappointed because it does not cover nullifying. Please ...
0
votes
1answer
224 views

C++ Move constructor and constant member pointer or constant member, how to nulify them to avoid memory leak?

I have a class that has a const member, const pointer and enum class member, My Questions for the sample code bellow: How to nuliffy a enum class member of "other"` in move constructor properly ...
7
votes
1answer
264 views

Why is this copy constructor called rather than the move constructor?

The following code snippet causes the copy constructor to be called where I expected the move constructor to be called: #include <cstdio> struct Foo { Foo() { puts("Foo gets built!"); } ...
4
votes
1answer
382 views

Move constructors and multiple inheritance

Synopsis How can I safely design a move constructor when a class uses multiple inheritance? Details Consider the following scenario: struct T { }; struct U { }; struct X : public T, public U { ...
1
vote
3answers
166 views

Why move ctor not called for construction from temporary object (result of operator+)?

Now that it's answered: Don't bother reading this question, it's a bit lengthy and probably not worth your time. There were bugs in my code, and that was the reason why the move constructor wasn't ...
3
votes
1answer
274 views

Where does the destructor hide in this code?

I'm having trouble understanding why the Foo move constructor tries to invoke ~ptr in the following example: #include <utility> template <typename T, typename Policy> class ptr { T * ...
9
votes
2answers
6k views

How do I get g++ to compile c++11 code with a move constructor?

I can't seem to get g++ to compile c++11 code that uses a move constructor. I keep getting this error: collin@Serenity:~/Projects/arraylib$ g++ ./t2.cpp ./t2.cpp:10:27: error: expected ‘,’ or ‘...’ ...
0
votes
2answers
138 views

C++ composite reference to owner is corrupted when owner is moved

I've been working at this all day so I hope I don't forget any important details, but here goes. My original goal was to have a player factory that encapsulated the logic of how to create a player. ...
11
votes
2answers
552 views

Why is this code trying to call the copy constructor?

I just spent an inordinate amount of time fiddling with a complilation error in Visual Studio. I have distilled the code into the small compilable example below and tried it on IdeOne and got the same ...
2
votes
3answers
375 views

Why explicit call of base move constructor actually calls base copy constructor?

I'm trying to call the base class move ctor explicitly through derived class move ctor but, surprise!, that actually calls the base class copy ctor NOT the base class move ctor. I'm using std::move() ...
1
vote
1answer
224 views

How do I invoke the move constructor?

In the code show below, how do I assign rvalue to an object A in function main? #include <iostream> using namespace std; class A { public: int* x; A(int arg) : x(new ...
10
votes
2answers
217 views

Why when one member cannot be moved, the whole enclosing class cannot be moved?

Example struct MyObject { MyObject(int value):value(value) { } MyObject(MyObject const&o):value(o.value) { } int value; }; Assume that the copy constructor does something in addition to ...
3
votes
2answers
299 views

Are move constructors produced automatically?

I have a big class holding a lot of STL containers. Will the compiler automatically make a move constructor that will move those containers to the target or I have to make my own?
9
votes
1answer
903 views

Move-semantics with a member std::vector

Sorry if this has been asked before, but as I understand it, in C++11, std::vector has a move constructor so that copies cost hardly anything in certain situations, like returning one by value. ...
11
votes
4answers
747 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: ...
3
votes
2answers
207 views

When I initialize a C++ container (such as a std::list) is the copy constructor called?

When I initialize a STL container such as a list< vector<char> > using e.g. my_list.push_back(vector<char>(5000, 'T')) is this copied after construction? Or does the compiler invoke ...
0
votes
1answer
311 views

std::move realisation

I got next snippet from microsoft template <typename T> struct RemoveReference { typedef T type; }; template <typename T> struct RemoveReference<T&> { typedef T type; ...
14
votes
5answers
721 views

Explicit move constructor?

The explicit keyword is recommended for all most constructors which can be called with one argument, except for copy constructors. For copy constructors, it has an use (to forbid implicit copying via ...
15
votes
3answers
735 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 ...
10
votes
3answers
325 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_; ...
3
votes
4answers
354 views

Move constructor and const member variables

I like the idea of const member variables especially when I wrap C functions into classes. The constructor takes a resource handle (e.g. a file descriptor) that stays valid during the whole object ...
3
votes
4answers
688 views

Move constructor does not implicitly work for member variables?

Why doesn't this: (vs2010) move the vector within the class? #include <vector> class MoveTest { public: std::vector<int> m_things; }; int _tmain(int argc, _TCHAR* argv[]) { ...
2
votes
3answers
1k views

Move Constructor calling base-class Move Constructor

I have a base class that basically wraps up attaching a class to a arbitrary windows handle (e.g, HWND, HFONT), and uses a policy class to attach/detach and destroy: // class SmartHandle ...
5
votes
2answers
887 views

Using move semantics with std::pair or std::tuple

Suppose you want to take advantage of move semantics, but one of your movable classes needs to be part of an std::pair. The purpose would be to create a function that returns an std::pair that can be ...
1
vote
1answer
333 views

Move constructor (rvalue reference) in implicit conversion

I am upgrading a C++ project from MSVC 2008 to 2010, and because of the new CComBSTR move constructor [CComBSTR( CComBSTR&& )], I am getting a compiler error because of an ambiguous call. ...
6
votes
1answer
352 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 ...

1 2