在类中调用函数:一种实用方法
在面向对象编程中,类封装数据和功能,将它们组织成逻辑实体。当需要对这些对象执行操作时,可以在类中定义成员函数。然而,当两个函数都定义在同一个类中时,如何从另一个函数中调用一个函数并不总是很清楚。
问题:
考虑以下计算代码坐标之间的距离:
class Coordinates: def distToPoint(self, p): # Calculate distance using Pythagoras' theorem def isNear(self, p): # How do we call distToPoint from isNear?
在这个例子中,我们想要使用 distToPoint 确定一个点是否靠近另一个点 功能。我们如何在 isNear 函数中调用这个函数?
解决方案:
要在同一个类中调用成员函数,我们需要使用类(按照惯例称为 self)来访问其方法。更正后的 isNear 函数如下所示:
class Coordinates: def distToPoint(self, p): # Calculate distance using Pythagoras' theorem def isNear(self, p): self.distToPoint(p) # Continue with other operations
通过在 distToPoint 之前添加 self,我们明确表明我们要在 Cooperatives 类的实例 self 上调用成员函数 distToPoint。
示例用法:
要使用此代码,您将创建一个实例,然后在该实例上调用 isNear 函数:
coordinates = Coordinates() coordinates.isNear(another_point)
这将使用 distToPoint 函数计算实例坐标与指定的 another_point 之间的距离。
以上是如何在 Python 中从同一类中的另一个类调用一个类函数?的详细内容。更多信息请关注PHP中文网其他相关文章!