コード例 #1
0
ファイル: ForecastDisplay.cs プロジェクト: StarGuideX/MyDemos
 public ForecastDisplay(WeatherData weatherData)
 {
     this.weatherData = weatherData;
     weatherData.RegisterObserver(this);
 }
コード例 #2
0
 //构造器需要weatheData对象(或主题)作为注册用。
 public StatisticsDisplay(WeatherData weatherData)
 {
     this.weatherData = weatherData;
     weatherData.RegisterObserver(this);
 }
コード例 #3
0
 public HeatIndexDisplay(WeatherData weatherData)
 {
     this.weatherData = weatherData;
     weatherData.RegisterObserver(this);
 }