我创建了以下示例来了解 python 中的实例
import time;
class test:
mytime = time.time();
def __init__(self):
#self.mytime = time.time();
time.sleep(1);
pass
from test import test
test1 = test()
test2 = test()
print test1.mytime
print test2.mytime
test1.mytime = 12
print test1.mytime
print test2.mytime
在这种情况下,输出 id 如下:
1347876794.72
1347876794.72
12
1347876794.72
我预计 test2.mytime 比 test1.mytime 大 1 秒。为什么不在每个实例中创建有关 mytime 的副本?