如何重载 - = c ++

时间:2012-11-27 17:11:58

标签: c++ operator-overloading

我需要重载赋值/减量运算符( - =)以便代码

object -= int

通过rhs上的值减少object.life。这是我的代码:

const Object& Object::operator -= (const Object& obj)
{ 
    if (life == obj.life)`
    {   
        this->life -= obj.life;
        return *this;
    }
} 

我如何在我的主要实现这个?

int main()
{ 
    Object o1;
    o1 -= 5; //DOESNT WORK
}

有什么建议吗? 感谢

3 个答案:

答案 0 :(得分:7)

当你从一个对象中减去一个对象时,你会重载这个大小写,但你显示的例子是减去一个整数。我想重载带整数的运算符:

const Object& Object::operator-= (int x);

答案 1 :(得分:3)

重载应该是int,而不是Object

Object& Object::operator -= (int amount);

或者,如果有意义,您可以编写一个构造函数,该int允许隐式int转换为Object类型。该参数应该用于初始化life

答案 2 :(得分:0)

你可以尝试使用它: -

const Object& Object::operator-= (int x)

因为重载应该采用int