Home Backend Development PHP Tutorial php设计模式 State (状态模式)_php技巧

php设计模式 State (状态模式)_php技巧

May 17, 2016 am 09:18 AM
php design patterns state state mode

状态state模式是GOF23种模式中的一种,和命令模式一样,也是一种行为模式。状态模式和命令模式相当像,一样是“接口—实现类”这种模式的应用,是面向接口编程原则的体现。

状态模式属于对象创建型模式,其意图是允许一个对象在其内部状态改变时改变它的行为,对象看起来似乎修改了他的类。比较常见的例子是在一个表示网络连接的类TCPConnection,一个TCPConnection对象的状态处于若干不同的状态之一:连接已经建立(Established),正在监听,连接已经关闭(closed)。当一个TCPConnection对象收到其他对象的请求时,他根据自身的状态作出不同的反应。

例如:一个Open请求的结果依赖于该连接已关闭还是连接已建立状态。State模式描述了TCPConnection如何在每一种状态下表现出不同的行为。这一种模式的关键思想是引入了一个称为TCPState的抽象类表示网络的连接状态,TCPState类为各种表示不同的操作状态的字类声明了一个公共接口。TCPState的子类实现与特定的状态相关的行为。例如,TCPEstablished和TCPClosed类分别实现了特定于TCPConnection的连接已建立状态和连接已关闭状态的行为。

举例来说:一个人具有生气,高兴和抓狂等状态,在这些状态下做同一个事情可能会有不同的结果,一个人的心情可能在这三种状态中循环转变。使用一个moodState类表示一个人的心情,使用mad,Happy,Angry类代表不同的心情。

先看一个例子:

复制代码 代码如下:

/**
* 状态模式
*
* 允许一个对象在其内部状态改变时改变它的行为,对象看起来似乎修改了它所属的类
*
*/
interface State
{
public function handle($state);
public function display();
}
class Context
{
private $_state = null;
public function __construct($state)
{
$this->setState($state);
}
public function setState($state)
{
$this->_state = $state;
}
public function request()
{
$this->_state->display();
$this->_state->handle($this);
}
}
class StateA implements State
{
public function handle($context)
{
$context->setState(new StateB());
}
public function display()
{
echo "state A
";
}
}
class StateB implements State
{
public function handle($context)
{
$context->setState(new StateC());
}
public function display()
{
echo "state B
";
}
}
class StateC implements State
{
public function handle($context)
{
$context->setState(new StateA());
}
public function display()
{
echo "state C
";
}
}
// 实例化一下
$objContext = new Context(new StateB());
$objContext->request();
$objContext->request();
$objContext->request();
$objContext->request();
$objContext->request();

状态模式的理解,关键有2点:

1. 通常命令模式的接口中只有一个方法。 而状态模式的接口中有1个或者多个方法。而且,状态模式的实现类的方法,一般返回值;或者是改变实例变量的值。也就是说,状态模式一般和对象的状态有关。实现类的方法有不同的功能,覆盖接口中的方法。状态模式和命令模式一样,也可以用于消除if…else等条件选择语句。

2. 主要的用途是,作为实例变量,是一个对象引用。命令模式的主要的使用方式是参数回调模式。命令接口作为方法的参数传递进来。然后,在方法体内回调该接口。而状态模式的主要使用方法,是作为实例变量,通过set属性方法,或者构造器把状态接口的具体实现类的实例传递进来。因此,可以这样比较命令模式和状态模式的异同。

State模式和command模式都是十分常用,粒度比较小的模式,是很多更大型模式的一部分。基本上,state模式和command模式是十分相似的。只要开发者心中对单例和多例有一个清醒的认识,即使不把它们分为两种模式也没事。
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)

Commonly used design patterns in PHP and their implementation methods Commonly used design patterns in PHP and their implementation methods Jun 27, 2023 pm 01:08 PM

PHP is a widely used and very popular programming language. PHP is a very important part of today's web applications. Design patterns play a vital role in developing PHP applications. Design pattern is a template for solving problems that can be reused in different environments. It helps us write better code and make the code more reliable, maintainable and scalable. In this article, we will explore some commonly used design patterns in PHP and how to implement them. Singleton Pattern Singleton pattern is a creation pattern that allows

What are the methods in react to change state? What are the methods in react to change state? Jan 06, 2023 am 09:18 AM

The methods for react to change the state are: 1. Modify the state through the "this.setState({title:'React'});" method; 2. Modify the state through the "this.setState((preState, props)=>counter:preState.quantity+ 1)" method to modify the state; 3. Change the state of the component through the "replaceState" method.

What are the differences between state and props in react? What are the differences between state and props in react? Nov 17, 2020 pm 04:49 PM

The difference: props are passed to the component (similar to the formal parameters of a function), while state is managed within the component itself (similar to a variable declared within a function). State is the component's own data management and control of its own state, which is variable; props is the data parameters passed in from the outside and is immutable.

What are the design patterns in php? What are the design patterns in php? Jul 25, 2023 am 09:39 AM

PHP design patterns include: 1. Singleton mode, which ensures that a class has only one instantiated object; 2. Factory mode, which encapsulates the instantiation process of the object in a factory class; 3. Abstract factory mode, which is similar to a factory Pattern of creating objects; 4. Observer pattern, realizing one-to-many dependencies between objects; 5. Adapter pattern, converting the interface of one class into the interface of another class; 6. Decorator pattern, dynamically Add some additional functions to an object; 7. Iterator pattern; 8. Strategy pattern; 9. Template method pattern, etc.

PHP core design patterns and practices PHP core design patterns and practices Nov 08, 2023 pm 08:58 PM

Introduction to PHP core design patterns and practices: Design patterns are commonly used problem-solving templates in software development. They provide a reusable solution that can help us follow best practices and good software design principles during the development process. . As a widely used programming language, PHP also has many common and useful design patterns that can be used in core development. This article will introduce several common PHP design patterns and provide relevant code examples. 1. Singleton mode (Singleton) Singleton mode is a type that only allows

Getting Started with PHP: State Pattern Getting Started with PHP: State Pattern May 20, 2023 am 10:51 AM

PHP Getting Started Guide: State Pattern The state pattern is a behavioral design pattern that allows objects to transition between different internal states, and these states trigger different behavioral operations. This article will introduce the concept, implementation and usage scenarios of the state pattern to help PHP developers better understand and apply this important design pattern. Conceptual state pattern (Statepattern) is a pattern proposed in the GoF design pattern collection. It mainly describes when the internal state of an object changes

What are the design patterns in PHP7.0? What are the design patterns in PHP7.0? May 26, 2023 am 09:21 AM

With the continuous development of technology, design patterns are becoming more and more important in software development. As the latest PHP version, PHP7.0 also integrates many design patterns. In this article, we will explore the design patterns in PHP7.0 to help PHP programmers better understand and apply these patterns. Singleton pattern The singleton pattern is a creational pattern that ensures that a class has only one instance and provides a global access point. In PHP7.0, you can use the __construct method and static method to

Analysis of state pattern in PHP object-oriented programming Analysis of state pattern in PHP object-oriented programming Aug 13, 2023 pm 01:15 PM

Analysis of the state pattern in PHP object-oriented programming Introduction: In object-oriented programming, the state pattern is a common design pattern. It allows an object to change its behavior when its internal state changes, while making these changes transparent to external objects. In PHP, the state pattern can be used to handle different states and behaviors of objects gracefully, improving the readability and maintainability of the code. This article will introduce the state pattern in PHP in detail, including its definition and implementation, as well as some common application scenarios. 1. Overview of the state model The state model is a

See all articles