摘要: 结构图:实现:1 abstract public class Component {2 abstract public void operation();3 }public class ConcreteComponent extends Component { @Override ... 阅读全文
posted @ 2015-11-26 20:01 gatsbydhn 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 结构图:实现:1 abstract public class Strategy {2 public void algrithmInterface()3 { 4 }5 } 1 public class StrategyA extends Strategy{ 2 3 ... 阅读全文
posted @ 2015-11-26 19:27 gatsbydhn 阅读(134) 评论(0) 推荐(0) 编辑