For the following code snippet,
class A{
const int a;
public:
A(): a(0){}
A(int m_a):a(m_a){};
A& operator =(const A &other);
};
A & A::operator =(const A &other)
{
const_cast<int&>(a) = other.a;
return *this;
}
what do the lines of
A & A::operator =(const A &other)
const_cast<int&>(a) = other.a;
mean? Or why this operator is defined this way? In other words, I feel confused about its usage and the way it is defined/written.
A(int m_a):a(m_a){};-- the normal idiom of m_ being prepended to member variables is reversed. The argument to the constructor has the m_ and the member variable doesn't. – Rob K Sep 14 '11 at 22:09