Consider this code:
#include <iostream>
#include <string>
using namespace std;
class Movable {
public:
Movable(const string& name) : m_name(name) { }
Movable(const Movable& rhs) {
cout << "Copy constructed from " << rhs.m_name << endl;
}
Movable(Movable&& rhs) {
cout << "Move constructed from " << rhs.m_name << endl;
}
Movable& operator = (const Movable& rhs) {
cout << "Copy assigned from " << rhs.m_name << endl;
}
Movable& operator = (Movable&& rhs) {
cout << "Move assigned from " << rhs.m_name << endl;
}
private:
string m_name;
};
int main() {
Movable obj1("obj1");
Movable obj2(std::move(obj1));
obj2 = std::move(obj1); // For demostration only
const Movable cObj("cObj");
Movable tObj(std::move(cObj));
tObj = std::move(cObj); // For demonstration only
}
Its output is:
Move constructed from obj1
Move assigned from obj1
Copy constructed from cObj
Copy assigned from cObj
As you can see, in these lines,
Movable tObj(std::move(cObj));
tObj = std::move(cObj); // For demonstration only
I intend to move cObj to tObj (the second move using the assignment operator is purely intended for demonstration). However, as you can see in the output, cObj is only copied to tObj.
The above example is only a demonstration and I do not know of any practical usage for this. But I will ask:
- Can I move a
constobject? - If I can, is it safe to do it?
ADDITIONAL: I forgot to ask. If I can move a const object, how should I do it? (const_cast?)

Movable&&butstd::movegives it aconst Movable&&which can only be taken by theconst Movable&overload. – Seth Carnegie Feb 12 at 4:15const_castif you can avoid it. @Seth is right: You need a constructor that takes a const rvalue reference. – Nemo Feb 12 at 4:17