命令模式代码及类图

命令模式代码及类图

ID:44814938

大小:50.00 KB

页数:4页

时间:2019-10-29

命令模式代码及类图_第1页
命令模式代码及类图_第2页
命令模式代码及类图_第3页
命令模式代码及类图_第4页
资源描述:

《命令模式代码及类图》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、命令模式类图代码4publicinterfaceCommand{publicvoidexecute();}publicclassNoCommandimplementsCommand{publicvoidexecute(){}}publicclassRemoteControl{Command[]onCommands;Command[]offCommands;publicRemoteControl(){4onCommands=newCommand[7];offCommands=newCommand[7];CommandnoCommand=newNoCommand();for(int

2、i=0;i<7;i++){onCommands[i]=noCommand;offCommands[i]=noCommand;}}publicvoidsetCommand(intslot,CommandonCommand,CommandoffCommand){onCommands[slot]=onCommand;offCommands[slot]=offCommand;}publicvoidonButtonWasPushed(intslot){onCommands[slot].execute();}publicvoidOffBottonPushed(intslot){offCom

3、mands[slot].execute();}publicStringtoString(){StringBufferstringBuff=newStringBuffer();stringBuff.append("------RemoteControl------");for(inti=0;i

4、nstringBuff.toString();}}44publicclassLight{Stringname;publicLight(){}publicLight(Stringname){this.name=name;}publicvoidon(){System.out.println(name+"lightison");}publicvoidoff(){System.out.println(name+"lightisoff");}}publicclassLightOnCommandimplementsCommand{Lightlight;publicLightOnComman

5、d(Lightlight){this.light=light;}publicvoidexecute(){light.on();}}publicclassLightOffCommandimplementsCommand{Lightlight;publicLightOffCommand(Lightlight){this.light=light;}publicvoidexecute(){light.off();}}44publicclassStereo{Stringname;publicStereo(Stringname){this.name=name;}publicvoidon()

6、{System.out.println(name+"StereoOn");}publicvoidoff(){System.out.println(name+"StereoOff");4}publicvoidsetCD(){System.out.println(name+"StereosetCD");}publicvoidsetDvd(){System.out.println(name+"StereosetDvd");}publicvoidsetRadio(){System.out.println(name+"Stereosetradio");}publicvoidsetVolu

7、me(){System.out.println(name+"Stereosetvolume");}}publicclassStereoOffCommandimplementsCommand{Stereostereo;publicStereoOffCommand(Stereostereo){this.stereo=stereo;}publicvoidexecute(){stereo.off();}}publicclassStereoOnWithCDCommandimplementsComman

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。