strategy pattern

来源:互联网 发布:知乎童谣诈骗事件介绍 编辑:程序博客网 时间:2024/06/07 13:06

Strategy Pattern:

Define a family of algorithms, ecapsulates each one, and makes them interchangeable. Strategy lets the algorithm vary independently from clients that use it.

OO-Principles:

1.Encapsulate what varies.

2.Favor composition over interface.

3.Program to interfaces, not implementations.