标签:run 组合 ini sel bsp 对象 div 面向对象 IV
对象的组合使用:
class A: def run(self): print(‘我居然被曲线运行了???‘)class B: def __init__(self): self.run_obj = A()b = B()b.run_obj.run()#
面向对象-组合使用
原文地址:https://www.cnblogs.com/jbzd/p/9222599.html