gpt4 book ai didi

python - Django的classonlymethod有什么用?

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

<分区>

源码如下:

class classonlymethod(classmethod):
def __get__(self, instance, owner):
if instance is not None:
raise AttributeError("This method is available only on the view class.")
return super(classonlymethod, self).__get__(instance, owner)

虽然我看到classonlymethod只能在类上调用,不能在实例上调用,不像python的classmethod,但为什么我们需要这样的“限制”?

www 上关于 classonlymethod 的内容并不多,任何外行示例一如既往地受到赞赏。

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