您好,登录后才能下订单哦!
这篇文章给大家介绍C++中如何使用const成员函数,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
#include<iostream>
using namespace std;
class studentInfo
{
public:
void setScore(int score){this->score=score;}
int getScore() const{printScore();return score;}
void printScore(){cout<<score<<endl;}
private:
int score;
};
int main(void)
{
return -1;
}
如果非要在const成员函数里面修改成员变量的话该怎么做了?上网查了一下主要有一下两种方法:
1. 通过this指针进行类型强制转换实现
类似于下面这样的方法:
int getScore() const
{
(const_cast<studentInfo*>(this))->score+=1;
return score;
}
2. 将成员变量定义为mutable
类似于下面这样:
mutable int score;
关于C++中如何使用const成员函数就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。