#include<iostream>
#include<string>
using namespace std;
//const 修饰成员函数
//常函数
class person
{
public:
//this指针的本质 是指针常量 ,指针的指向是不可以修改的 this指针指向的值是可以修改的
//this指针相当于 person*const this; const修饰的是 this 所以this指针指向不可以修改
//const person * const this 则 this指针指向和this指向的值都不可以修改
//void showperson() const 就相当于上一行 const person *const this
void showperson() const //在函数体的内部不管传还是不传,隐含在每一个函数体的内部都有一个this指针
{ //在成员函数后面加const 修饰的是this指针 让this指针指向的值也不可以修改
/m_A = 100; //相当于 this->m_A=100;
//this=NULL;//这行代码是错误的 this指针不可以修改指针的指向
}
void func()
{
m_A = 100; //在普通的函数当中可以允许修改属性
}
int m_A;
mutable int m_B;//特殊变量,即使在常函数中,也可以修改这个值,加关键字mutable
};
void test01()
{
person p;
p.showperson();
}
//常对象 不允许修改属性
void test02()
{
const person p;//在对象前加const ,变为常对象
//p.m_A = 100; //报错 常对象是不能被修改的
p.m_B = 100;//不会报错 因为m_B是特殊变量 在常函数中可以被修改 在常对象中也可以被修改
//常对象只能调用常函数
p.showperson();
//p.func(); //报错 常对象不可以调用普通函数 因为普通函数可以修改属性 会报错
}
int main()
{
test01();
system("pause");//按任意键继续
return 0;//关闭程序
}
35类和对象-对象特性-const修饰成员函数
于 2023-07-12 19:43:04 首次发布