weatherstationheatindex.java

来自「深入浅出设计模式」· Java 代码 · 共 17 行

JAVA
17
字号
package headfirst.observer.weatherobservable;public class WeatherStationHeatIndex {	public static void main(String[] args) {		WeatherData weatherData = new WeatherData();		CurrentConditionsDisplay currentConditions = new CurrentConditionsDisplay(weatherData);		StatisticsDisplay statisticsDisplay = new StatisticsDisplay(weatherData);		ForecastDisplay forecastDisplay = new ForecastDisplay(weatherData);		HeatIndexDisplay heatIndexDisplay = new HeatIndexDisplay(weatherData);		weatherData.setMeasurements(80, 65, 30.4f);		weatherData.setMeasurements(82, 70, 29.2f);		weatherData.setMeasurements(78, 90, 29.2f);	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?