组合基础
class A:
def say_a(self):
print("AAA")
class B:
def __init__(self,a):
self.a=a
a=A()
b=B(a)
b.a.say_a()
#运行结果是AAA,相当于B拥有了A这个对象,进而执行了A对象里的方法
组合的更深含义与如何调用
#测试has-a的关系使用组合,这是我改进的编写
import copy
class MobilePhone:
def __init__(self,h1,h2): #记住先h1然后h2,这个顺序是和下面的m=MobilePhone(Screen(),CPU())相对应的
self.h1 = h1 # h1 h2 show
self.h2 = h2 #所以,顺序已经确定了h1只能执行的class Screen的show
class CPU: #因此只能是m.h1.show()
def calculate(self):
print("CPU进行CALCULATE啦")
print("cpu对象:",self)
class Screen:
def show(self):
print("显示风景画")
print("screen对象:", self)
m=MobilePhone(Screen(),CPU()) #Screen在前面,决定了先执行class Screen
m.h1.show()
m.h2.calculate()
#最后的结果
# 显示风景画
# screen对象: <__main__.Screen object at 0x0000022933864E20>
# CPU进行CALCULATE啦
# cpu对象: <__main__.CPU object at 0x0000022933864E80>