Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
3answers
451 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 ...
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
4answers
412 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 ...
10
votes
2answers
182 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 ...
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_; ...
8
votes
2answers
241 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 ...
8
votes
1answer
217 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. ...
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 ...
6
votes
1answer
782 views

Move constructor and assignment operator: why no default for derived classes?

Why there is default move constructor or assignment operator not created for derived classes? To demonstrate what I mean; having this setup code: #include <utility> struct A { A () { } A ...
4
votes
2answers
288 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 ...
3
votes
2answers
110 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 ...
3
votes
4answers
253 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[]) { ...
3
votes
3answers
169 views

Moving inserted container element if possible

I'm trying to achieve the following optimization in my container library: when inserting an lvalue-referenced element, copy it to internal storage; but when inserting rvalue-referenced element, move ...
2
votes
1answer
73 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 ...
2
votes
2answers
110 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?
2
votes
3answers
375 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 ...
2
votes
4answers
373 views

Why does this C++0x program generates unexpected output?

This program: test_header.hpp #include <boost/signal.hpp> #include <utility> class Sensor; class Recorder : public ::boost::signals::trackable { public: explicit Recorder(int id) : ...
1
vote
2answers
66 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 ‘...’ ...
1
vote
1answer
113 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 ...
1
vote
4answers
112 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 ...
1
vote
1answer
203 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. ...
0
votes
2answers
73 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. ...
0
votes
3answers
59 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() ...
0
votes
1answer
164 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; ...
0
votes
1answer
3k views

C++0x move constructor gotcha [closed]

Edit: I re-asked this same question (after fixing the problems noted with this question) here: Why does this C++0x program generates unexpected output? The basic idea is that pointing to moveable ...