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 one. Obviously the pointer should be moved over but idk if it's a good idea with the primitives.
Below is a contrived example of the class:
class Foo {
private:
long m_bar = 1;
/* 20+ similar members */
};
To make them movable, they would have to be dynamically allocated.
class Foo {
public:
Foo(Foo && rhs) : m_bar(rhs.m_bar) { rhs.m_bar = nullptr; }
~Foo() { delete m_bar; }
private:
long *m_bar = new long{1};
};
My question is, will the overhead of allocating on the heap nullify the performance increase introduced by the move semantics?
std::move()on primitive (POD) types. There's no need to heap allocate all your POD members. If your compiler supports generating move constructors, then your originalFooexample is already movable. – Bret Kuhns Nov 19 '12 at 15:15