2019年10月19日
摘要: 接口隔离原则 1.什么是接口隔离原则 Clients should not be forced to depend upon interfaces that they don't use.(客户端不应该强行依赖它不需要的接口) The dependency of one class to anoth 阅读全文
posted @ 2019-10-19 22:18 低调的小郭 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 单一职责原则(SRP:The Single Responsibility Principle) 一个类应该有且只有一个变化的原因。 There should never be more than one reason for a class to change. 为什么将不同的职责分离到单独的类中是 阅读全文
posted @ 2019-10-19 15:48 低调的小郭 阅读(188) 评论(0) 推荐(0) 编辑