gpt4 book ai didi

python - 运行时错误 : maximum recursion depth exceeded using default hash method

转载 作者:太空宇宙 更新时间:2023-11-04 01:17:46 25 4
gpt4 key购买 nike

为什么我得到“return self.__hash__()RuntimeError: maximum recursion depth exceeded”当我使用默认的散列方法时?

This causes the error:

def __hash__(self):
return self.__hash__()

This works:

def __hash__(self):
return self.name.__hash__()

最佳答案

当然,您通过从自身调用方法进入无限递归:

def method_name(self):
return self.method_name()

您可能想调用基类的方法?

def __hash__(self):
return super(ClassName, self).__hash__()

关于python - 运行时错误 : maximum recursion depth exceeded using default hash method,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23289426/

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