摘要: super用于类的继承。用super()代替父类名 (一)通过类名调用父类中的方法 (二)通过super调用父类中的方法(python3) 结果如下: python3中的写法:super().__init__() python2中的写法:super(B,self).__init__() B子类,不是 阅读全文
posted @ 2016-07-24 23:16 金明爱python 阅读(473) 评论(0) 推荐(0) 编辑