下面的代码应该打印同样的东西 3 次。为什么不呢?
from PySide.QtCore import QObject
class A(QObject):
instance = 1
@classmethod
def test(cls):
cls.instance # Remove this line and it prints the right thing
cls.instance = cls()
print(cls.__dict__['instance'])
print(cls.instance)
print(type.__getattribute__(cls, 'instance'))
A.test()
预期结果:
<__main__.A object at 0x1310c20>
<__main__.A object at 0x1310c20>
<__main__.A object at 0x1310c20>
实际结果:
<__main__.A object at 0x2242878>
1
1
QObject 背后的元类甚至没有覆盖getattribute,所以我怎么可能没有用“cls.instance”取回 A 实例?
更奇怪的是,在分配它之前不访问该属性(参见注释的代码行)使其工作正常。
我可以复制如下(使用 PySide 1.1.0):
- Windows 7 64 位,Python 2.7.1 32 位:有效
- Windows 7 64 位,Python 2.7.3 32 位:有效
- Windows 7 64 位、Python 3.2.3 32 位:失败
- Ubuntu 11.10 64 位,Python 2.7.2+:有效
- Ubuntu 11.10 64 位,Python 3.2.2:失败
更新:我设法在 Ubuntu 上的 Python 3.2.2 上编译 PySide 1.1.1,但它并没有解决问题。