C&C++   发布时间:2022-04-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了c – 将’const’作为’this’参数传递错误大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我很久以来就遇到了错误,接下来,我正在学习,我想我不明白这个错误.

droid.cpp: In function ‘std::ostream& operator<<(std::ostream&,const Droid&)’: 

droid.cpp:94:30: error: passing ‘const Droid’ as ‘this’ argument of ‘std::string 

Droid::getId()’ discards qualifiers
 [-fpermissive]

第94行:

std::ostream&   operator<<(std::ostream &os,Droid const & a)
    os << "Droid '" << a.getId() << "'," << *a.getStatus() << "," << a.getEnergy() << std::endl;

和听众:

std::string   getId();

我对“operator<<”,a.getId,a.getStatus,a.getEnergy中的3个调用有相同的错误. 有人可以向我解释一下编译器在说什么吗?

解决方法

您需要将该方法设为const,以便可以在const实例上或通过const引用调用它:

std::string   getId() const;
                      ^^^^^

这同样适用于在std :: ostream& amp;中调用的所有Droid方法. operator<<(std :: ostream& os,Droid const& a). 您还需要在方法的定义中添加const.

大佬总结

以上是大佬教程为你收集整理的c – 将’const’作为’this’参数传递错误全部内容,希望文章能够帮你解决c – 将’const’作为’this’参数传递错误所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。