C++ 类中的const关键字
Posted 庖丁解牛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 类中的const关键字相关的知识,希望对你有一定的参考价值。
//类中的const关键字 #include<iostream> using namespace std; class Point{ public: //这个const关键字本质上修饰的是this指针 int GetX() const //====>int GetX(const this) { //因为this被隐藏,所以const关键字只好写在函数后面 //x++; //加上const关键字 报错 error C3490: 由于正在通过常量对象访问“x”,因此无法对其进行修改 //这个用法一般用在取私有成员属性的函数里,这样的函数一般不允许修改成员属性, //所以可以加上const关键字增加安全性 return x; } private: int x; int y; }; void main(){ system("pause"); }
以上是关于C++ 类中的const关键字的主要内容,如果未能解决你的问题,请参考以下文章