自定义类的内置函数unbound method

""" 使用print打印的时候,class调用该函数"""

def   __str__(self):

        return'Vector:{}'.format(self.coordinates)


""" 使用==判断时,自定义行为"""

def    __eq__(self,v):

            """ 在判断对象1 == 对象2 时,自定义返回对象的coordinates相等判断结果,判断两个对象是相                               等,就是做对象的coordinates是否相等"""

            return self.coordinates = v.coordinates

你可能感兴趣的:(自定义类的内置函数unbound method)