用户:
_Rise_查看:18 回复:11 评论:18 创建时间:2020-08-20T14:51:34
如题如题,注意是py
86135clcclass A(object):
def b(self):
print('Hello!')
class B(A):
def c(self):
print('哈喽!')
b=B()
b.b()
# Hello!
b.c()
# 哈喽!
a=A()
a.b()
# Hello!
a.c()
# 报错点赞0
评论
86135clcclass A(object):
def b(self):
print('Hello!')
class B(A):
def __init__(self):
A.__init__(self)
def c(self):
print('哈喽!')
b=B()
b.b()
# Hello!
b.c()
# 哈喽!
a=A()
a.b()
# Hello!
a.c()
# 报错点赞1
评论