作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要从类中获取类名:
class Cls:
notation = None
def __init__(self):
notation = self.__class__.__name__
print(Cls.notation)
打印 None
但我需要 'Cls'
如何修复它或如何定义返回类名称的类属性?
最佳答案
您正在分配给局部变量,而不是类属性:
def __init__(self):
Cls.notation = self.__class__.__name__
请注意,如果涉及 Cls
的子类,则 self.__class__
不一定是 Cls
。您可能想使用
def __init__(self):
type(self).notation = self.__class__.__name__
取决于您的用例。
分配给 self.notation
不起作用,因为这会创建一个隐藏类属性的实例属性。
如果您希望在定义类后立即 Cls.notation == "Cls"
,您也可以对其进行硬编码:
class Cls:
notation = "Cls"
或
class Cls:
pass
Cls.notation = Cls.__name__
虽然你也可以写
class Cls:
notation = __qualname__
根据语句第一行中使用的名称设置其值,尽管 __qualname__
也考虑了嵌套:
class Cls1:
class Cls2:
notation = __qualname__ # "Cls1.Cls2", not "Cls2"
关于python - 如何将 `__class__.__name__` 设置为类属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60240455/
我是一名优秀的程序员,十分优秀!