只是学习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()
,如果我继承它?
答案 0 :(得分:0)
Child.print_hello()
有效。
问题已经结束。