void out2() const{

Posted dxgg-bond

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了void out2() const{相关的知识,希望对你有一定的参考价值。

include "stdafx.h"

include

using namespace std;

class aa{
int num;
public:
aa(){
int b =10;
num = b;
};
void out1(){
cout<<num<<endl;
}
void out2() const{
cout<<num<<endl;
}
void out3() const{
num+=10; //出错,const函数不能修改其数据成员
cout<<num<<endl;
}

};
int _tmain(int argc, _TCHAR* argv[])
{
aa a1;
a1.out1();
a1.out2();
a1.out3();
const aa a2;
a2.out1(); // 错误,const的成员 不能访问非const的函数
a2.out2();
a2.out3();
return 0;
}





























以上是关于void out2() const{的主要内容,如果未能解决你的问题,请参考以下文章

将 const void* 转换为 const int*

void Test::printxy(void)' : 不能在 const 类中将 'this' 指针从 'const Test' 转换为 'Test &'

C 中的泛型编程 - void*- const 正确性

qsort 给出 [错误]:从 `int (*)(cricketer*, cricketer*)' 到 `int (*)(const void*, const void*)' 的无效转换

virtual void funcFoo() const = 0 和 virtual void funcFoo() = 0; 之间的区别

将所有权从 unique_ptr<T,void(*)(T*)> 转移到 unique_ptr<const T,void(*)(const T*)>