面向对象设计原则(十)SDP(稳定依赖原则)

SDP(The Stable Dependencies Principle,稳定依赖原则)

朝着稳定的方向进行依赖。  

 

 

The dependencies between packages in a design should be in the direction of the stability of the packages. A package should only depend upon packages that are more stable that it is.

一个设计中的包之间的依赖应该朝着稳定的方向进行。一个包只应该依赖那些比自己更稳定的包。

换成另一个说法是:

Depend in the direction of stability.

朝着稳定的方向进行依赖。

你可能感兴趣的:(面向对象)