设计模式之1 observer模式

设计模式之1 observer模式

ID:40313358

大小:25.56 KB

页数:7页

时间:2019-07-30

设计模式之1 observer模式_第1页
设计模式之1 observer模式_第2页
设计模式之1 observer模式_第3页
设计模式之1 observer模式_第4页
设计模式之1 observer模式_第5页
资源描述:

《设计模式之1 observer模式》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库

1、设计模式总章:设计模式就是把简单的问题复杂化,带来的好处是系统的可扩展性。用了设计模式以后:复杂度增加开发成本增加维护成本降低设计模式的基本原则是,添加,而不是修改。1.什么叫分析?(确定需求是什么)分析就是要知道我要做什么。确定系统实现什么样的功能。2.什么叫设计?(实现需求)设计就是我要怎么实现。设计就是多种实现的手段当中选取一个。实现某个功能是使用什么样的方式。用一个接口来封装一系列共同具有的特点。各个监听类都去实现这个接口。在被监听的类上加上addxxxlistener方法。awt当中的事件:事件源可以是,but

2、tion,textField,textArea事件是:ActionEvent相对应的监听器是actionlistener。通过配置文件来管理observer。配置文件:文件名:observer.properties文件的内容:observers=com.bjsxt.dp.observer.Dad,com.bjsxt.dp.observer.GrandFather,com.bjsxt.dp.observer.Dog访问当前配置的文件的main方法:packagecom.bjsxt.dp.observer;importjav

3、a.io.IOException;importjava.util.ArrayList;importjava.util.List;importjava.util.Properties;//事件类classWakenUpEvent{privatelongtime;privateStringloc;privateChildsource;//事件方法publicWakenUpEvent(longtime,Stringloc,Childsource){super();this.time=time;this.loc=loc;this

4、.source=source;}publiclonggetTime(){returntime;}publicvoidsetTime(longtime){this.time=time;}publicStringgetLoc(){returnloc;}publicvoidsetLoc(Stringloc){this.loc=loc;}publicChildgetSource(){returnsource;}publicvoidsetSource(Childsource){this.source=source;}}//被监听类

5、。classChildimplementsRunnable{privateListwakenUpListeners=newArrayList();publicvoidaddWakenUpListener(WakenUpListenerl){wakenUpListeners.add(l);}voidwakeUp(){for(inti=0;i

6、ners.get(i);l.ActionToWakenUp(newWakenUpEvent(System.currentTimeMillis(),"bed",this));}}publicvoidrun(){try{Thread.sleep(5000);}catch(InterruptedExceptione){e.printStackTrace();}this.wakeUp();}}//监听类classDadimplementsWakenUpListener{publicvoidActionToWakenUp(Wake

7、nUpEventwakenUpEvent){System.out.println("feedchild");}}//监听类classGrandFatherimplementsWakenUpListener{publicvoidActionToWakenUp(WakenUpEventwakenUpEvent){System.out.println("hugchild");}}//监听类classDogimplementsWakenUpListener{publicvoidActionToWakenUp(WakenUpEve

8、ntarg0){System.out.println("wangwang...");}}//监听接口interfaceWakenUpListener{publicvoidActionToWakenUp(WakenUpEventwakenUpEvent);}//主类publicclassTest{publicstati

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

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

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