类中的Python调用函数
我有这段代码可以计算两个坐标之间的距离。这两个函数都在同一类中。
但是,如何在函数distToPoint
中调用该函数isNear
?
class Coordinates: def distToPoint(self, p):
"""
Use pythagoras to find distance
(a^2 = b^2 + c^2)
"""
...
def isNear(self, p):
distToPoint(self, p)
...
回答:
由于这些是成员函数,因此在实例上将其称为成员函数self。
def isNear(self, p): self.distToPoint(p)
...
以上是 类中的Python调用函数 的全部内容, 来源链接: utcz.com/qa/425641.html