首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件开发 >

设计方式-使用java内置的观察者模式(Observer Pattern)

2012-09-08 
设计模式--使用java内置的观察者模式(Observer Pattern)?3、测试类public class Test {/** * @param args *

设计模式--使用java内置的观察者模式(Observer Pattern)

?

3、测试类

public class Test {/** * @param args */public static void main(String[] args) {WeatherData wd = new WeatherData();CurrentConditionsDisplay ccd = new CurrentConditionsDisplay(wd);wd.setMeasurements(21, 13, 30.4f);wd.setMeasurements(1, 2, 3f);}}

?

热点排行