1 Star 0 Fork 1

llongger/Code_C++

forked from GodOuO/Code_C++ 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
29.Const_func.cpp 908 Bytes
一键复制 编辑 原始数据 按行查看 历史
GodOuO 提交于 2023-03-15 04:06 . Train
#include<iostream>
#include<string>
using namespace std;
class Person
{
private:
int m_A;
mutable int m_B; //特殊值
public:
mutable int m_C;
void showPerson()const;
void func();
Person(/* args */);
};
void Person::showPerson()const{ //const Person * const this
this->m_B = 10; //mutable 可修改
cout<<"m_B :\t"<<m_B;
//this->m_A = 100; //不可修改
//this = NULL; //this指针 不可修改
//如果没有const this均可修改,m_A = 100;可操作
}
Person::Person(/* args */)
{
}
void test01(){
Person p;
p.showPerson();
}
void test02(){
const Person p; //常对象,其属性不可修改
p.m_C = 100; //mutable 可修改
p.showPerson(); //常对象 只能调用常函数
//p.func(); //不可调用,因为逻辑可修改常对象,所以不接受
}
int main(){
//test01();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/llongger/codeCpp.git
[email protected]:llongger/codeCpp.git
llongger
codeCpp
Code_C++
master

搜索帮助