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

来源:互联网 发布:手机一碰就响的软件 编辑:程序博客网 时间:2024/06/04 22:49

转自: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. }  


上面的代码编译通过:


0 0
原创粉丝点击