依赖注入

# -*- coding: utf-8 -*-

# 假定有一个类Computer依赖于类Cpu
class Cpu:
    def __init__(self,brand):
        self.brand = brand

    def __str__(self):
        return f"CPU: <{self.brand}>"

class Computer:
    def __init__(self):
        self.cpu = Cpu('Intel')

    def run(self):
        print(f"running computer using {self.cpu}")


Computer().run()

# 当CPU类的构造方法发生调整的时候,

class CpuNew:
    def __init__(self,brand,price):
        self.brand = brand
        self.price = price

    def __str__(self):
        return f"CPU: <{self.brand}:({self.price})>"

# 就得同时修改Computer类

class Computer:
    def __init__(self):
        self.cpu = CpuNew('Intel',2000)

    def run(self):
        print(f"running computer using {self.cpu}")


Computer().run()

# 把依赖的类的内部逻辑进行隐藏(Cpu的方法对Computer不可见),只保留Cpu通用的方法和属性
class Computer:
    def __init__(self,cpu):
        self.cpu = cpu

    def run(self):
        print(f"running computer using {self.cpu}")


Computer(CpuNew('Intel',2000)).run()

# 这就是一种依赖注入
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值