Python commutative operator override

梦想的初衷 提交于 2019-11-30 18:28:37
Moses Koledoye

Just implement an __radd__ method in your class. Once the int class can't handle the addition, the __radd__ if implemented, takes it up.

class A(object):
    def __init__(self, value):
        self.value = value

    def __add__(self, other):
        if isinstance(other, self.__class__):
            return self.value + other.value
        else:
            return self.value + other

    def __radd__(self, other):
        return self.__add__(other)


a = A(1)
print a + 1
# 2
print 1 + a
# 2

For instance, to evaluate the expression x - y, where y is an instance of a class that has an __rsub__() method, y.__rsub__(x) is called if x.__sub__(y) returns NotImplemented.

Same applies to x + y.

On a side note, you probably want your class to subclass object. See What is the purpose of subclassing the class "object" in Python?

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!