C++ Primer 要点整理 Chapter 7.
this
this的类型是 ExampleClass * const,所以不能将this绑定到常量对象上。所以也就不能在常量对象上调用普通成员函数。
ExampleClass::Func(&Obj, other params…);编译器眼中对成员函数的调用。const成员函数
上一条提到this的默认类型是 ExampleClass * const,而在const成员函数中this的类型是 const ExampleClass * const。上一条中的编译器眼中函数调用就变成了
ExampleClass::Func(const ExampleClass * const, other params...);
所以常量成员函数不能改变调用他的对象的内容
- 3.