Python中多繼承與super()用法Python類分爲兩種,一種叫經典類,一種叫新式類。兩種都支持多繼承。

class A(object):
    def __init__(self, *args, **kwargs):
        print "args is :{}".format(*args)
        print "kwargs is:{}".format(kwargs)


class B(A):
    def __init__(self, *args, **kwargs):
        super(B, self).__init__(*args, **kwargs)
        print "B Method:{}".format(*args)


bb = B("Hello", lang="Python")
相關文章
相關標籤/搜索