用const方法更改非mutable成员

用const方法更改非mutable成员

以下代码中,SetValConst()是const类A的const方法,却能更改A的非mutable成员。
涉及的C++概念:bitwise constness

class B;

class A
{
public:
A();
void SetVal(int nVal) {m_nVal = nVal;}
void SetValConst(int nVal) const; // But will modify m_nVal!
private:
int m_nVal; // non-mutable!
B* m_pB;
};

class B
{
public:
B(A* pA): m_pA(pA) {};
void SetValOfA(int nVal)
{
m_pA->SetVal(nVal);
}
private:
B();
A* m_pA;
};

A::A(): m_nVal(0), m_pB(new B(this))
{
}

void A::SetValConst(int nVal) const
{
m_pB->SetValOfA(nVal);
}

int main()
{
const A a;
a.SetValConst(1);
return 0;
}

你可能感兴趣的:(C++,c,C#)