gpt4 book ai didi

python - 在 Python 接口(interface)中定义属性是个好主意吗?

转载 作者:行者123 更新时间:2023-11-30 23:38:22 25 4
gpt4 key购买 nike

在这样的接口(interface)中定义属性是一个好习惯吗?

class MyInterface(object):
def required_method(self):
raise NotImplementedError

@property
def required_property(self):
raise NotImplementedError

最佳答案

我会使用ABC class为此,但是是的;您甚至可以针对该用例使用 @abstractproperty

from abc import ABCMeta, abstractproperty, abstractmethod

class MyInterface(object):
__metaclass__ = ABCMeta

@abstractmethod
def required_method(self):
pass

@abstractproperty
def required_property(self):
pass

ABC 的子类仍然可以自由地将 required_property 实现为属性; ABC 只会验证 required_property 是否存在,而不验证它是什么类型。

关于python - 在 Python 接口(interface)中定义属性是个好主意吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14645466/

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