c++ error C2662 cannot convert 'this' pointer from 'const Type' to 'Type &'

前端 未结 3 470
刺人心
刺人心 2020-12-13 14:26

I am trying to overload the c++ operator== but im getting some errors...

error C2662: \'CombatEvent::getType\' : cannot convert \'this\' pointer from \'const Combat

相关标签:
3条回答
  • 2020-12-13 15:07
    CombatEventType getType();
    

    needs to be

    CombatEventType getType() const;
    

    Your compiler is complaining because the function is being given a const object that you're trying to call a non-const function on. When a function gets a const object, all calls to it have to be const throughout the function (otherwise the compiler can't be sure that it hasn't been modified).

    0 讨论(0)
  • 2020-12-13 15:17

    change the declaration to :

    CombatEventType getType() const;
    

    you can only call 'const' members trough references to const.

    0 讨论(0)
  • 2020-12-13 15:20

    It's a const issue, your getType method is not defined as const but your overloaded operator arguments are. Because the getType method is not guaranteeing that it will not change the class data the compiler is throwing an error as you can't change a const parameter;

    The simplest change is to change the getType method to

    CombatEventType getType() const;
    

    Unless of course the method is actually changing the object.

    0 讨论(0)
提交回复
热议问题