非const对象也可以调用const成员函数

转自:http://blog.csdn.net/djb100316878/article/details/42296203

当一个类只有const成员函数的时候,非const对象也可以调用const成员函数:

[cpp] view plain copy
 print?在CODE上查看代码片派生到我的代码片
  1. // ConstTest.cpp : 定义控制台应用程序的入口点。  
  2. //  
  3.   
  4. #include "stdafx.h"  
  5.   
  6. #include <iostream>  
  7. using namespace std;  
  8.   
  9. class A  
  10. {  
  11. public:  
  12.        A( void )  
  13.        {  
  14.        }  
  15.          
  16.        void func( void ) const  
  17.        {  
  18.            cout << "const version" << endl;  
  19.        }  
  20. };  
  21.   
  22. int _tmain(int argc, _TCHAR* argv[])  
  23. {  
  24.     //非const对象调用const成员函数   
  25.   
  26.     A obj;  
  27.     obj.func( );  
  28.       
  29.     //const对象调用const成员函数   
  30.   
  31.     const A obj_const;  
  32.     obj_const.func( );  
  33.       
  34.     system( "PAUSE" );  
  35.     return EXIT_SUCCESS;  
  36.     return 0;  
  37. }  


上面的代码编译通过:


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值