策略模式(Strategy )
摘要:
为实现一个目的采用不同的方式都可实现,具体看要采取哪种方式。 //接口 public interface Strategy { public void algorithmInterface(); } public class ConcreStrategyA implments Strategy { 阅读全文
posted @ 2018-05-09 18:06 gfaraway 阅读(145) 评论(0) 推荐(0) 编辑