search
HomeJavajavaTutorialExample explanation of command pattern in Java design patterns
Example explanation of command pattern in Java design patternsAug 10, 2017 am 09:58 AM
javamodelDesign Patterns

Command mode is the encapsulation of commands. The basic structure of the command mode class diagram is introduced below. Friends who are interested in the command mode related knowledge of Java design mode should take a look.

Definition : Encapsulates a request into an object, allowing you to parameterize the client with different requests, queue requests or record request logs, and provide command undo and recovery functions.

Type: Behavioral class pattern

Class diagram:

Structure of command pattern

As the name suggests, the command pattern is an encapsulation of commands. First, let’s take a look at the basic structure in the command pattern class diagram:

  • Command class: It is an abstract class , the class declares the command that needs to be executed. Generally speaking, an execute method must be published to execute the command.

  • ConcreteCommand class: The implementation class of the Command class, which implements the methods declared in the abstract class.

  • Client class: The final client calling class.

The functions of the above three classes should be relatively easy to understand. Let’s focus on the Invoker class and the Recevier class.

  • Invoker class: Caller, responsible for calling commands.

  • Receiver class: Receiver, responsible for receiving commands and executing them.

The so-called encapsulation of commands, to put it bluntly, is nothing more than writing a series of operations into a method and then calling it by the client. Reflecting it on the class diagram, you only need A ConcreteCommand class and a Client class can complete the encapsulation of commands. Even further, in order to increase flexibility, you can add a Command class for appropriate abstraction. What are the functions of this caller and receiver?

In fact, you can think about it from another angle: If you simply encapsulate some operations as a command for others to call, how can it be called a pattern? As a behavioral pattern, the command pattern must first achieve low coupling. Low coupling can improve flexibility, and the purpose of adding the two roles of caller and receiver is precisely for this purpose. The general
code of the command mode is as follows:


class Invoker { 
 private Command command; 
 public void setCommand(Command command) { 
  this.command = command; 
 } 
 public void action(){ 
  this.command.execute(); 
 } 
} 
abstract class Command { 
 public abstract void execute(); 
} 
class ConcreteCommand extends Command { 
 private Receiver receiver; 
 public ConcreteCommand(Receiver receiver){ 
  this.receiver = receiver; 
 } 
 public void execute() { 
  this.receiver.doSomething(); 
 } 
} 
class Receiver { 
 public void doSomething(){ 
  System.out.println("接受者-业务逻辑处理"); 
 } 
} 
public class Client { 
 public static void main(String[] args){ 
  Receiver receiver = new Receiver(); 
  Command command = new ConcreteCommand(receiver); 
  //客户端直接执行具体命令方式(此方式与类图相符) 
  command.execute(); 
 
  //客户端通过调用者来执行命令 
  Invoker invoker = new Invoker(); 
  invoker.setCommand(command); 
  invoker.action(); 
 } 
}

We can see through the code that when we call, the execution sequence is first the caller class, and then the command class, and finally the receiver class. In other words, the execution of a command is divided into three steps, and its coupling degree is much lower than encapsulating all operations into a class. This is the essence of the command pattern: the caller of the command Separate from the executor so that neither party has to care about how the other party operates.

Advantages and Disadvantages of Command Mode

First, the command mode has good encapsulation: each command is encapsulated. For the client, it can call the corresponding command if it needs any function without knowing how the command is executed. For example, there is a set of file operation commands: create new files, copy files, and delete files. If these three operations are encapsulated into a command class, the client only needs to know that there are these three command classes. As for the logic encapsulated in the command class, the client does not need to know.

Secondly, the command mode is very scalable. In the command mode, the receiver class generally encapsulates the most basic operations, and the command class encapsulates these basic operations twice. When adding a new command, the writing of the command class generally does not start from scratch. There are a large number of receiver classes to be called, and a large number of command classes to be called. The code reusability is very good. For example, if we need to add a command to cut files during file operations, we only need to combine the two commands of copying files and deleting files, which is very convenient.

Finally, let me talk about the shortcomings of the command mode, that is, if there are many commands, development will be a headache. In particular, many simple commands can be implemented with just a few lines of code. If you use the command mode, no matter how simple the command is, you need to write a command class to encapsulate it.

Applicable scenarios of command mode

For most request-response mode functions, it is more suitable to use command mode, just like command As the mode definition says, the command mode is more convenient for implementing functions such as logging and undoing operations.

Summarize

For the case of one occasion, this is a very tangled issue for all developers. Sometimes, because some changes in demand are foreseen, a certain design pattern is used for the flexibility and scalability of the system, but the foreseen demand does not happen. On the contrary, the unforeseen demand comes. Quite often, when modifying the code, the design patterns used had the opposite effect, causing the entire project team to complain. I believe every programmer has encountered such an example. Therefore, based on the principles of agile development, when we design a program, if it can be solved well without using a certain pattern according to the current needs, then we should not introduce it, because it is not difficult to introduce a design pattern. , we can revamp the system and introduce this design pattern when we really need to use it.

Take the command mode as an example. In our development, the request-response mode function is very common. Generally speaking, we will encapsulate the response operation to the request into a method. This encapsulation Methods can be called commands, but they are not command patterns. Whether or not this design should be raised to the level of a pattern needs to be considered separately, because if the command pattern is used, the two roles of caller and receiver will be introduced, and the logic originally placed in one place will be dispersed into three classes. , when designing, one must consider whether the cost is worth it.

The above is the detailed content of Example explanation of command pattern in Java design patterns. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

Java数据结构之AVL树详解Java数据结构之AVL树详解Jun 01, 2022 am 11:39 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。

See all articles

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

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor