摘要: 开始之前,先出一道题: 1 #super函数探讨 2 class A(object): 3 def __init__(self): 4 print 'A.__init__' 5 6 class B(A): 7 def __init__(self): 8 super(B, self).__init__ 阅读全文
posted @ 2017-08-30 16:30 Winter_Ding 阅读(453) 评论(0) 推荐(0) 编辑