一、const起到什么作用
const声明该函数为只读函数,不会修改任何数据成员。
1、可提高程序的可读性。
2、提高程序的健壮性。文章来源:https://www.toymoban.com/news/detail-685414.html
二、使用示例
#include <iostream>
using namespace std;
int a=10;
class Test{
int a=10;
public :
int test () const{
// a++;
cout << a <<endl;
cout << "hello"<<endl;
geta();
return a;
}
int geta() const{
return 2;
}
};
int main(){
Test test;
test.test();
}
三、注意事项
1、函数被const 标志后,不能修改成员数据
2、函数被const标志后,只能调用被const标志的函数文章来源地址https://www.toymoban.com/news/detail-685414.html
到了这里,关于C++之函数后面加const的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!