gpt4 book ai didi

Python 类成员与实例成员不同

转载 作者:行者123 更新时间:2023-12-04 10:29:12 26 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Python dir(dict) vs dir(dict.__class__)

(2 个回答)


去年关闭。




我正在尝试获取 WxPython 复选框的值。当我在我的类(class)中运行以下命令时:

print(self)
a = dir(self)
print(a)

#result
<__main__.Window object at 0x03B02670>
['AcceleratorTable', 'AcceptsFocus', etc...
'm_staticText3', 'm_staticText31', 'm_staticText311', 'm_staticText3111', 'm_staticText3112', 'm_staticText31121', 'm_staticline1', 'm_staticline3']

我的复选框是返回结果的一部分。但是当我用 'self' 代替类 'Window' 时,复选框属性丢失了!
print(Window)
a = dir(Window)
print(a)

#result
<class '__main__.Window'>
['AcceleratorTable', 'AcceptsFocus', etc..,
'WindowVariant', '__bool__', '__class__', '__del__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__nonzero__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__']


看起来一样,但我的复选框没有返回!这里发生了什么?

最佳答案

类如 Window未实例化。因此它不能访问任何需要类实例的东西。在以下代码中:

class A:
b = 0

def __init__(self):
self.a = 1

print(dir(A))
inst = A()
print(dir(inst))
dir(A)将不包含 a ,因为访问 a需要实例化,因为它是为 __init__ 中的每个实例单独声明的方法。它将包含 b ,这是静态的(属于类本身而不是它的实例)。 dir(inst)将同时包含 ab .

关于Python 类成员与实例成员不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60488525/

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