Tagged Questions
4
votes
2answers
322 views
C++11 / VS2010 : Returning containers of uncopyable but movable objects
Consider the following code:
#include <vector>
#include <boost/noncopyable.hpp>
struct A : private boost::noncopyable
{
A(int num, const std::string& name)
: num(num),
...
0
votes
1answer
151 views
Destructor called before move-constructor?
I have a function which looks something like this, it returns a noncopyable class by movesemantics:
MyClass&& MyFunction() {
MyClass myClass;
do some stuff;
return std::move(myClass);
}
...
1
vote
3answers
304 views
Is it worth adding a move-enabled setter?
This post rambles a bit so before I get into it I want to be clear what I'm asking: Have you added move-enabled setters to your code and have you found it's worth the effort? And how much of the ...
4
votes
2answers
170 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());
...
112
votes
2answers
17k 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 ...