码迷,mamicode.com
首页 > 编程语言 > 详细

类的成员函数后面加const有什么用(c++常问问题六)

时间:2016-01-29 03:13:38      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:

每个类的成员函数都默认传入this指针,成员函数后面加了const后该成员函数将不能修改该类的成员了

 

class cat
{
public:
  cat(){};
  
  string getName() const
  {
      this->m_strName = “”;//错误,const this不允许修改成员
      return this->m_strName; //正确,没修改
   }

protected:
  string m_strName;
}

 

类的成员函数后面加const有什么用(c++常问问题六)

标签:

原文地址:http://www.cnblogs.com/JensenCat/p/5167805.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!