当前位置: 代码迷 >> 软件设计 >> 软件设计3大原则
  详细解决方案

软件设计3大原则

热度:10573   发布时间:2013-02-26 00:00:00.0
软件设计三大原则

1. 面向接口编程,而不是面向实现编程

2. 组合优先于继承

3. 将经常变化的部分从不变的部分中分离出来



1. Identify the aspects of your application that vary and separate them from what stays the same

2. favor composition over inheritance

3. program to an interface,not an implementation