C 语言

关注公众号 jb51net

关闭
首页 > 软件编程 > C 语言 > C++ const

C++ 中const对象与const成员函数的实例详解

投稿:lqh

这篇文章主要介绍了C++ 中const对象与const成员函数的实例详解的相关资料,希望通过本文能让大家彻底掌握该如何使用,需要的朋友可以参考下

C++ 中const对象与const成员函数的实例详解

const对象只能调用const成员函数:

#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 对象调用:

#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成员函数。

如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

您可能感兴趣的文章:
阅读全文