C++ 中const对象与const成员函数的实例详解
const对象只能调用const成员函数:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include<iostream>
using namespace std;
class A
{
public :
void fun() const
{
cout<< "const 成员函数!" <<endl;
}
void fun()
{
cout<< "非const成员函数 !" <<endl;
}
};
int main()
{
const A a;
a.fun();
}
|
输出:const 成员函数!
但是如果把第以1个fun注释掉就会出错:error C2662: “A::fun”: 不能将“this”指针从“const A”转换为“A &”。
但是const成员函数可以被非const 对象调用:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include<iostream>
using namespace std;
class A
{
public :
void fun() const
{
cout<< "const 成员函数!" <<endl;
}
/* void fun()
{
cout<<"非const成员函数 !"<<endl;
}
*/
};
int main()
{
A a;
a.fun();
}
|
该段代码输出:const 成员函数!
当然非const对象可以调用非const成员函数。
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:http://blog.csdn.net/liuzhanchen1987/article/details/7909980