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)
0
votes
1answer
106 views
“Move Factory” for c++ 11
I want to make a factory style generator, which takes in A and outputs a subclass of A, RA (it adds information to A). I can't really think of a safe way to do this though.
structure:
class A
{
...
4
votes
3answers
128 views
Implementing Move Constructor by Calling Move Assignment Operator
The MSDN article, How to: Write a Move Constuctor, has the following recommendation.
If you provide both a move constructor and a move assignment operator for your class, you can eliminate ...
19
votes
2answers
844 views
When are implicit move constructors not good enough?
When are implicit move constructors not good enough?
Should I treat it like destructors and copy constructors, where it's generally only necessary if I manage my own memory?
Is the implicit move ...
2
votes
2answers
147 views
std::move in constructor initializer list in class template
I have a template like this:
template<typename T>
struct foo {
T m_t;
foo(T t) : m_t(t) {}
};
The problem is that I want to support both small/regular types and huge types (like matrices) ...
3
votes
1answer
212 views
Will a vector of movable elements resize efficiently?
Let's assume T is moveable object:
vector<T> v;
v.resize(...)
if reallocation is needed, then will that code invoke copy, or move constructor on all elements?
If the answer is "move ...
3
votes
1answer
158 views
How to use c++11 move semantics to append vector contents to another vector?
Consider this snippet:
class X;
void MoveAppend(vector<X>& src, vector<X>& dst) {
dst.reserve(dst.size() + src.size());
for (const X& x : src) dst.push_back(x);
...
16
votes
2answers
210 views
Why throw local variable invokes moves constructor?
Recently, I've "played" with rvalues to understand their behavior. Most result didn't surprize me, but then I saw that if I throw a local variable, the move constructor is invoked.
Until then, I ...
0
votes
2answers
54 views
C++11 - Move object containing filestream
I've got the following (simplified problem):
class Stream()
{
std::ofstream mStr;
public:
Stream() : mStr("file", ofstream::out)
{}
Stream(const Stream & rhs) = delete;
...
15
votes
6answers
510 views
Are C++11 move semantics doing something new, or just making semantics clearer?
I am basically trying to figure out, is the whole "move semantics" concept something brand new, or it is just making existing code simpler to implement? I am always interested in reducing the number ...
3
votes
3answers
109 views
C++ move semantics- what exactly is it to achieve? [duplicate]
What exactly is the purpose of this "move" semantic? I understand if you don't pass in by reference a copy is made of non-primitive types, but how does "move" change anything? Why would we want to ...
1
vote
2answers
51 views
Why is using move semantics in this way invalid?
I was tracking down a compilation error when I came to this case:
struct Y
{
int&& y;
Y(int&& y)
: y(y)
{
} ...
1
vote
3answers
72 views
Concatenating two moved strings
The code below:
#include <iostream>
#include <string>
using namespace std;
int main() {
string s1 = "hello";
string s2 = "my";
string s3 = "world";
string s4;
s4 = ...
3
votes
3answers
134 views
Move construction from const reference
I have the following situation where I need to move construct t2 from t1.
Unfortunately it is not possible to do that (constness violation I suppose)
What is the right approach to handle that ...
42
votes
4answers
3k 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
255 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)) {}
private:
...
1
vote
1answer
31 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{
...
2
votes
3answers
149 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)
{
// ????
}
...
3
votes
1answer
123 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 ...
4
votes
1answer
187 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 ...
5
votes
2answers
135 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
223 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:
...
0
votes
2answers
47 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
88 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 ...
-2
votes
1answer
50 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 = ...
4
votes
1answer
265 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> ...
4
votes
1answer
215 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) ...
5
votes
2answers
255 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).
...
1
vote
1answer
64 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 ...
8
votes
2answers
317 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
298 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* ...
1
vote
1answer
77 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
79 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, ...
5
votes
1answer
234 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:
...
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 ...
4
votes
2answers
187 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 ...
6
votes
1answer
101 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 ...
9
votes
3answers
242 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 ...
0
votes
3answers
125 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
60 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
166 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
149 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
97 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
244 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(), ...
19
votes
2answers
307 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
{
...
1
vote
2answers
137 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];
...
3
votes
3answers
142 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
204 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
2answers
131 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 ...



