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

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

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

  2021-03-29 我要评论
想了解C++ 中const对象与const成员函数的实例详解的相关内容吗,在本文为您仔细讲解C++ const的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:C++,中const对象与const成员函数,C++,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成员函数。

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

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们