Table of Contents
Head First-Observer Pattern, headfirst-Observer
Home Backend Development PHP Tutorial Head First-Observer Pattern, headfirst-Observer_PHP Tutorial

Head First-Observer Pattern, headfirst-Observer_PHP Tutorial

Jul 13, 2016 am 10:09 AM
weather forecast

Head First-Observer Pattern, headfirst-Observer

What is the Observer Pattern? The Observer pattern defines a one-to-many relationship between objects.

There are subjects (i.e. observers) and observers in the observer pattern. The subject uses a common interface to notify the observer. The subject does not know the details of the observer. It only knows that the observer implements the subject's interface.

The push method in the universal observer mode is more suitable. Below we will write an example of push. The weather station provides an interface. When the weather changes, the data will be notified to each dashboard for display.

<?php
//使用接口,类必须实现几个功能注册,删除,通知这几个动作
interface Subject{
	public function registerObserver(Observer $o);
	public function removeObserver(Observer $o);
	public function notifyObservers();
}
interface Observer{
	public function update($a,$b,$c);
}
//各个面板不同将改行为以接口实现
interface DisplayElement{
	public function display();
}

class Weather implements Subject{
	public $observers;
	public $changed=false;
	public $a;
	public $b;
	public $c;

	public function __construct(){
		$this->observers = array();
	}
	public function registerObserver(Observer $o){
		$this->observers[] = $o;
	}
	public function removeObserver(Observer $o){
		$key = array_search($o,$this->observers);
		if($key!==false){
			unset($this->observers[$key]);
		}
	}
	public function notifyObserver(){
		if($this->changed){
			foreach($this->observer as $ob){
				$ob->update($this->a,$this->b,$this->c);
			}
		}
	}
	public function setChanged(){
		$this->changed = true;
	}
	//当数值改变时通知各个观察者
	public function measurementsChanged(){
		$this->setChanged();
		$this->notifyObserver();
	}

	public function setMeasurements($a,$b,$c){
		$this->a = $a;
		$this->b = $b;
		$this->c = $c;
		$this->measurementsChanged();		
	}
}

class CurrentConditionsDisplay implements Observer, DisplayElement{
	public $a;
	public $b;
	public $c;
	public $subject;

	public function __construct(Subject $weather){
		$this->subject = $weather;
		$this->subject->registerObserver($this);
	}

	public function update($a,$b,$c){
		$this->a = $a;
		$this->b = $b;
		$this->c = $c;
		$this->display();
	}

	public function display(){
		echo $this->a.$this->b.$this->c;
	}
}
?>
Copy after login

We communicate between these objects in a loosely coupled way, so that we can greatly improve efficiency during later maintenance.

Design principles: Find out the changing aspects of the program, and then separate them; programming for interfaces, not implementation; use more combination and less inheritance

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/946585.htmlTechArticleHead First-Observer Pattern, headfirst-Observer What is the Observer Pattern? The Observer pattern defines a one-to-many relationship between objects. There are subjects (i.e. observers) in observer mode...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to set the weather forecast on Huawei mobile phones on the desktop Detailed explanation: Tutorial on adding desktop widgets to mobile phones How to set the weather forecast on Huawei mobile phones on the desktop Detailed explanation: Tutorial on adding desktop widgets to mobile phones Mar 02, 2024 pm 12:34 PM

Since December 2021, Huawei & Honor mobile phones have launched the Vientiane desktop widget function. Many convenient functions, visually optimized desktop controls, etc. have been added to many users’ mobile desktops; by August this year, the two major merchant platforms also opened up sports and health data, weather data, music data, system data, etc., allowing users to use their mobile desktops The interactive operation is more convenient, faster and more interesting, allowing users to DIY and create their own personalized desktop. Mobile desktop after adding widgets Recently, many Huawei mobile phone users have reported that they are not clear about how to add desktop widgets on Huawei and Honor mobile phones, complaining that the process is too complicated and cumbersome. In order to help everyone solve this problem, Qian Shuxian has prepared a detailed operation process, hoping to

How to use PHP to implement weather forecast function How to use PHP to implement weather forecast function Jun 27, 2023 pm 05:54 PM

As a popular back-end programming language, PHP is widely popular in the field of web development. The weather forecast function is a common web application scenario. Implementing the weather forecast function based on PHP is relatively simple and easy to understand. This article will introduce how to use PHP to implement the weather forecast function. 1. Obtain weather data API To implement the weather forecast function, you first need to obtain weather data. We can use third-party weather APIs to obtain real-time, accurate weather data. At present, the mainstream weather API providers in China include the free “Xinzhiwei” and

How to use Java Websocket to implement real-time weather forecast function? How to use Java Websocket to implement real-time weather forecast function? Dec 17, 2023 pm 05:10 PM

How to use JavaWebSocket to implement real-time weather forecast function? With the popularity of the Internet and mobile devices, real-time weather forecast function has become one of the essential functions of many applications. Using JavaWebSocket technology can realize real-time communication conveniently and quickly, providing users with the latest weather forecast information. This article will introduce how to use JavaWebSocket to implement the real-time weather forecast function and provide specific code examples. Environment preparation Before starting, you need to make sure that you have installed

Google launches 'advanced weather forecasting AI” MetNet-3, claiming to predict super-traditional physical models Google launches 'advanced weather forecasting AI” MetNet-3, claiming to predict super-traditional physical models Nov 03, 2023 pm 05:25 PM

IT House reported on November 3 that Google Research and DeepMind collaborated to develop the latest weather model MetNet-3. This model is based on the previous MetNet and MetNet-2. It can predict global weather conditions 24 hours in advance. High-resolution forecasts including precipitation, surface temperature, wind speed, wind direction and felt temperature. IT House found that Google mentioned that the MetNet-3 model has been implemented in the "Google Mobile Software" weather forecast on the mobile platform. The MetNet-3 model can create "smooth and high-precision" predictions with a spatial resolution of 1 to 4 kilometers and an analysis interval of 2 minutes. Experiments have proven that MetNet-3's prediction capabilities surpass traditional physical weather forecast models. For example

How to restore desktop weather forecast How to restore desktop weather forecast Feb 24, 2024 pm 06:31 PM

There will be a weather forecast function on the desktop, so how to restore the desktop weather forecast? Users need to click Window Tools on the desktop, then click Weather, and select a weather component. This desktop weather forecast recovery method introduction will tell you the specific operation method. The following is a detailed introduction, take a look! How to restore desktop weather forecast? Answer: Select weather in the desktop widget, and then add it to the desktop. Specific method: ios method: 1. Long press the Apple screen, and then click the + sign in the upper left. 2. Search for weather and open the app. 3. Then select the style of the weather component and click Add Widget. 4. Then click Done on the upper right. Android method: 1. Long press the screen and click on the widget. 2. Click on the sky

How to obtain city weather forecast information using Python and Baidu Map API? How to obtain city weather forecast information using Python and Baidu Map API? Jul 31, 2023 pm 02:46 PM

How to obtain city weather forecast information using Python and Baidu Map API? Introduction: Weather forecast plays an important guiding role in our daily life. This article will introduce how to use the Python programming language and Baidu Map API to obtain weather forecast information for a city, thereby helping us understand the weather conditions accurately. First, we need to register a Baidu developer account and create an application. After creating the application, Baidu will provide us with a pair of APIKeys for permission authentication using the Baidu Map API. catch

Google launches 'advanced weather forecasting AI” MetNet-3, claiming that its prediction results exceed traditional physical models Google launches 'advanced weather forecasting AI” MetNet-3, claiming that its prediction results exceed traditional physical models Nov 04, 2023 am 08:22 AM

According to news on November 3, Google Research and DeepMind collaborated to develop the latest weather model MetNet-3. This model is based on the previous MetNet and MetNet-2 and can make high-resolution predictions of global weather conditions 24 hours in advance. , including precipitation, surface temperature, wind speed, wind direction and felt temperature. This site found that Google mentioned that the MetNet-3 model has been implemented in the "Google Mobile Software" weather forecast on the mobile platform. The MetNet-3 model can create "smooth and highly accurate" forecasts with a spatial resolution of 1 to 4 kilometers and a 2-minute analysis interval. Experiments have proven that the prediction ability of MetNet-3 surpasses traditional physical weather forecast models, such as

Applying physically coupled graph neural networks to improve precipitation forecasting skills at the Institute of Atmospheric Physics, Chinese Academy of Sciences Applying physically coupled graph neural networks to improve precipitation forecasting skills at the Institute of Atmospheric Physics, Chinese Academy of Sciences Jan 25, 2024 pm 03:42 PM

Editor | In the era of ScienceAI large models, the effects of purely data-driven meteorological and climate models are gradually catching up to or even surpassing numerical models. However, existing large-scale meteorological and climate models still have some problems. For example, the physical consistency in the model is not high enough, which limits the ability to predict complex weather and climate phenomena such as precipitation. In addition, the forecast effect of divergent wind is not satisfactory. These issues require further research and improvement to improve the prediction accuracy and reliability of the model. At present, combining physics, atmospheric dynamics and deep learning models is an important way to solve the bottleneck problem. Recently, the team of researcher Huang Gang from the Institute of Atmospheric Physics, Chinese Academy of Sciences, based on the data and computing power support of the Earth System Numerical Simulation Facility (Huan), analyzed the coupling relationship between physical variables from the perspective of

See all articles