### 事例代码 https://gitee.com/jly521/strategy.git
策略模式(Strategy)
- 应用场景:定义一系列的算法,把它们一个个封装起来,并且使它们可相互替换
- 本模式使得算法可独立于使用它的客户而变化
- Spring 中在实例化对象的时候用到Strategy 模式,在SimpleInstantiationStrategy 有使用
- 注意源码中,很多命名已经体现了实现原理、做什么用的
### 事例代码 https://gitee.com/jly521/strategy.git
策略模式(Strategy)
转载于:https://my.oschina.net/u/3847203/blog/1933547