在论坛上碰到有人问
类中成员函数 当const与non-const成员函数里的代码重复时,怎么只实现一个,而让另一个调用它.
为什么const不能调用 non-const
这就要翻翻effective c++这本书了
原书代码如下
class TextBlock
{
public:
const char& operator[](std::size_t position)const
{
...
...
...
return text[position];
}
char& operator[](std::size_t position)
{
return const_cast<char&>(static_cast<const TextBlock&>(*this)[position]);
}
private:
std::string text;
};
static_cast (*this)这里面把*this从TextBlock&类型转换成const TextBlock&这样调用
(变成了常对象了,其调用的是const成员函数),因为返回的也是const,所以前面const_cast 把返回值的const移除了.这样这个对象noconst成员函数也能操作了.
其实书上说的很详细
那为什么const不能调用 non-const呢
常成员函数
使用const关键字进行说明的成员函数,称为常成员函数。一般情况下,只有常成员函数才有资格操作常成员变量或常对象,没有使用const关键字说明的成员函数不能用来操作常对象
通过const_cast虽然能使non-const成员函数 达到操作常成员对象或者常对象 但那是极度危险的,const成员函数承诺绝不改变其对象的逻辑状态, const函数直接调用non-const函数 那说明你const函数无法保证只读不写 这显然与意图违背, 你违背了你的承诺.
阅读(2150) | 评论(0) | 转发(0) |