其他面向对象设计原则3: 依赖倒置原则DIP The Dependency Inversion Principle7.1 依赖倒置原则DIP The Dependency Inversion Principle I. 高层模块不应当依赖低层模块 ,两者都依赖抽象 High-level modules should not depend on low-level modules,Both should depend on abstractions II.抽象不能依赖细节,细节应当依赖抽象 Ab…