博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
设计模式-策略模式
阅读量:5101 次
发布时间:2019-06-13

本文共 1247 字,大约阅读时间需要 4 分钟。

结构图:

实现:

1 abstract public class Strategy {2     public void algrithmInterface()3     {    4     }5 }
1 public class StrategyA extends Strategy{ 2  3     @Override 4     public void algrithmInterface() { 5         super.algrithmInterface(); 6         System.out.println("算法A的实现"); 7     } 8      9 10 }
1 public class StrategyB extends Strategy{ 2  3     @Override 4     public void algrithmInterface() { 5         super.algrithmInterface(); 6         System.out.println("算法B的实现"); 7     } 8      9 10 }
1 public class Context { 2  3     private Strategy strategy; 4  5     public Context(Strategy strategy) { 6         super(); 7         this.strategy = strategy; 8     } 9     10     public void contextInterface()11     {12         strategy.algrithmInterface();13     }14     15     public void setStrategy(Strategy s)16     {17         this.strategy = s;18     }19 }
1 public class Client { 2     public static void main(String[] args) 3     { 4         Context context = new Context(new StrategyA()); 5         context.contextInterface(); 6          7         context.setStrategy(new StrategyB()); 8         context.contextInterface(); 9     }10 }

应用常用:

该模式封装了一系列算法,让它们而已相互替换,而不会影响到客户端的变化。

转载于:https://www.cnblogs.com/gatsbydhn/p/4998698.html

你可能感兴趣的文章
开始Flask项目
查看>>
Ruby:多线程队列(Queue)下载博客文章到本地
查看>>
Android打包key密码丢失找回
查看>>
03 jQuery动画
查看>>
医药箱APP静态小项目
查看>>
安装使用eclipse
查看>>
VC6.0调试技巧(一)(转)
查看>>
linux命令
查看>>
类库与框架,强类型与弱类型的闲聊
查看>>
webView添加头视图
查看>>
php match_model的简单使用
查看>>
在NT中直接访问物理内存
查看>>
Intel HEX 文件格式
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>
php_扑克类
查看>>
回调没用,加上iframe提交表单
查看>>
(安卓)一般安卓开始界面 Loding 跳转 实例 ---亲测!
查看>>
Mysql 索引优化 - 1
查看>>
LeetCode(3) || Median of Two Sorted Arrays
查看>>
大话文本检测经典模型:EAST
查看>>