Exercise 44b - composition
class Other(object):
def override(self):
print("OTHER override()")
def implicity(self):
print("OTHER implicity()")
def altered(self):
print("OTHER altered()")
class Child(object):
def __init__(self):
self.other = Other()
def implicity(self):
self.other.implicity()
def override(self):
print("CHILD override()")
def altered(self):
print("CHILD, BEFORE OTHER altered()")
self.other.altered()
print("CHILD, AFTER OTHER altered()")
son = Child()
son.implicity()
son.override()
son.altered()
output
OTHER implicity()
CHILD override()
CHILD, BEFORE OTHER altered()
OTHER altered()
CHILD, AFTER OTHER altered()
2019-10-03
02:09:04
posted on 2019-10-02 21:09 petit_herisson 阅读(98) 评论(0) 收藏 举报
浙公网安备 33010602011771号