Python class中的other

未生Mercy發表於2020-10-04

定義了一個Point類,類中有計算兩點距離的方法,self表示本類,other表示另一個類,可以直接使用屬性。

other引數其他用法 https://www.cnblogs.com/hujingnb/p/10246385.html

class Point(object):

    def __init__(self, x=0, y=0):

        self.x = x

        self.y = y

    def test(self, other):

        print('this %f' % (sqrt((self.x - other.x)**2 +

                                (self.y - other.y)**2)))

 

if __name__ == "__main__":

    a = Point(0, 0)

    b = Point(3, 4)

    a.test(b)

 

相關文章