通常我们会看到一些函数声明后面会跟着一个const,如下
void function() const{}
这个const是做什么的呢?
看一下下面的例子,就知道了。直接在编译前,就会提示下面的两个错误.
#include "stdafx.h"#includeusing namespace std;class aa{ int num;public: aa(){ int b =10; num = b; }; void out1(){ cout< <
在类成员函数的声明和定义中,
const的函数不能对其数据成员进行修改操作。
const的对象,不能引用非const的成员函数。
转载于: