在子类中使用父方法|蟒

时间:2016-07-18 21:37:34

标签: python python-2.7 class parent-child

只是学习Python,不要生气。

请考虑以下代码:

class Parent:
    def __init__(self):
        pass

    @staticmethod
    def print_hello():
        print "hello"

class Child(Parent):
    def __init__(self):
        super(Child, self).__init__()    

    @staticmethod
    def print_all():
        print_hello()
        print "world"

问题是为什么我不能在子方法中调用父级print_hello(),如果我继承它?

1 个答案:

答案 0 :(得分:0)

Child.print_hello()有效。

问题已经结束。