python super()如何工作如何传递args如何继承

时间:2016-12-22 17:13:35

标签: python

class a():
    def __init__(self):
        super().__init__()
        print('A')
class b():
    def __init__(self):
        super().__init__()
        print('B')
class c(a, b):
    def __init__(self):
        super().__init__()
        print('C')
c()

为什么结果打印BAC

我认为它会像

一样运行

build c - > init - >去上课 - >去上课b - >打印' C'

现在有点混乱

0 个答案:

没有答案