如何在类中调用函数?

2022-02-20 00:00:00 python function class call

问题描述

我有这个计算两个坐标之间距离的代码。这两个函数都在同一个类中。

但是,如何在函数isNear中调用函数distToPoint

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)
    ...

相关文章