摘要:
// See https://aka.ms/new-console-template for more information using System.Drawing; /* 装饰者模式,不改变实现类的情况下,动态给实现类增加新功能,这里使用聚合关系实现 奶茶店 实现点奶茶加不同的料,计算价格的场 阅读全文
摘要:
#SOLID1、单一职责原则(Single Responsibility Principle):类的功能尽量单一2、接口隔离原则(Interface Segregation Principle):接口功能尽量单一3、开闭原则(Open Close Principle):对扩展开放,对修改关闭4、依赖 阅读全文