- 论坛徽章:
- 2
|
- Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win32
- Type "copyright", "credits" or "license()" for more information.
- >>> class A(object):
- p_num = 0
- def __init__(self, id):
- self.id = id
- A.p_num += 1
- >>> class B(A):
- def __init__(self, id, name):
- super(B, self).__init__(id)
- self.id = id
- self.name = name
- B.p_num += 1
-
- >>> b = B(1, 'b')
- >>> b.p_num, id(b.p_num)
- (2, 19179212)
- >>> a = A(2)
- >>> a.p_num, id(a.p_num)
- (2, 19179212)
- >>> b.p_num, id(b.p_num)
- (2, 19179212)
- >>> c = B(3, 'c')
- >>> c.p_num, id(c.p_num)
- (3, 19179200)
- >>> b.p_num, id(b.p_num)
- (3, 19179200)
- >>> a.p_num, id(a.p_num)
- (3, 19179200)
- >>>
复制代码 |
|