gpt4 book ai didi

python - 如何调用类中的函数?

转载 作者:太空宇宙 更新时间:2023-11-03 21:10:33 26 4
gpt4 key购买 nike

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

但是,如何在函数 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)
...

关于python - 如何调用类中的函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55094502/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com