gpt4 book ai didi

python - 在实例化后向对象添加标志的 pythonic 方法是什么?

转载 作者:行者123 更新时间:2023-12-05 03:22:03 25 4
gpt4 key购买 nike

想象一家生产瓶子的工厂,最后在每个瓶子上贴上标签,标明其内容。

所以我们有 Bottle 类的对象,以及一个将 Label 类型的对象附加到每个 Bottle 的函数。

问题是不能在其 __init__ 函数中将标签赋予 bottle,因为标签是在 bottle 之后创建的。我们当然可以只添加一个等于 None 的标志,然后再对其进行变异,但是我们有两个问题:a)变异和 b)我们无法区分尚未贴上标签的情况和已经贴上标签的情况。已贴上标签,其值等于 None。

处理这个问题的 pythonic 方法是什么?

我的解决方案如下,看起来很糟糕!我还能做什么?

class BottleWithLabel(Bottle):
def __init__(bottle, label)
self.bottle = bottle
self.label = label
def __getattribute__(attr):
if attr not in ['label']:
return getattr(self.bottle, attr)
return object.__getattribute__(self, attr)

# apply label
bottle = BottleWitLabel(bottle, label)
# get label
bottle.label
# check if bottle has undergone the labelling process
isinstance(bottle, BottleWithLabel)

最佳答案

我认为对于您描述的用例,最简洁的方法是使用 sentinel value ,即表示您没有标签的对象。这样,您的标签可能是 None:

class Unlabelled:
def __init__(self): raise Exception('Should not be instantiated')


class Bottle:
def __init__(self):
self.label = Unlabelled # Note: not an instance

def is_labelled(self): # Alternative method usage
return self.label is not Unlabelled


b = Bottle()
if b.label is Unlabelled: # Could also be b.label == Unlabelled
b.label = None
assert b.is_labelled()

可变或不可变与此实现垂直:例如,您可以添加一个方法以在每次标记对象时返回对象的副本。

至于这个解决方案的“pythonicity”,很常见,有一个 PEP关于那个。您也可以在该 PEP 上看到不同的实现(包括更简单的实现)。

关于python - 在实例化后向对象添加标志的 pythonic 方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72839834/

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