【C++】 关键字 mutable

#include <iostream>
#include <cstring>

class CTextBlock
{
public:
    std::size_t length() const;
private:
    char * pText;
    // mutable关键字的作用:可以在const成员函数中修改const成员变量。
    //mutable std::size_t textLength;
    //mutable bool        lengthIsValid;
    std::size_t textLength;
    bool        lengthIsValid;
};

std::size_t CTextBlock::length() const{
    if(!lengthIsValid){
        textLength = std::strlen(pText);
/*
mutable.cpp:16: error: assignment of data-member 'CTextBlock::textLength' in read-only structure
mutable.cpp:17: error: assignment of data-member 'CTextBlock::lengthIsValid' in read-only structure
*/
        lengthIsValid = true;
    }
    return textLength;
}

int main(int argc, char *argv[])
{

    return 0;
}

原文链接: https://www.cnblogs.com/visayafan/archive/2011/08/28/2155912.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/31308

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月8日 上午8:33
下一篇 2023年2月8日 上午8:33

相关推荐