gpt4 book ai didi

python - 强制覆盖字段/方法?

转载 作者:太空宇宙 更新时间:2023-11-03 13:48:22 28 4
gpt4 key购买 nike

如何在 Python 父类中指定需要在子类中覆盖某些字段/方法?

最佳答案

你可以引发一个NotImplementedError:

def my_method(self, arg):
raise NotImplementedError('Implement me')

对于属性,你可以使用@property装饰器:

@property
def my_property(self):
raise NotImplementedError('Implement me as well')

关于python - 强制覆盖字段/方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14704315/

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