Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • System Design Tutorial
  • What is System Design
  • System Design Life Cycle
  • High Level Design HLD
  • Low Level Design LLD
  • Design Patterns
  • UML Diagrams
  • System Design Interview Guide
  • Scalability
  • Databases
Open In App
Next Article:
Bridge Method Design Pattern in Java
Next article icon

Command Method Design Pattern in Java

Last Updated : 23 May, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

The Command Design Pattern in Java is a behavioral design pattern that turns a request into a stand-alone object, allowing parameterization of clients with different requests, queuing of requests, and support for undoable operations(action or a series of actions that can be reversed or undone in a system).

Command-Design-Pattern-in-Java-(1)


Important Topics for Command Method Design Pattern in Java

  • What is the Command Design Pattern in Java?
  • Components of the Command Design Pattern in Java
  • Command Design Pattern Example in Java
  • When to use the Command Design Pattern
  • When not to use the Command Design Pattern 

What is the Command Design Pattern in Java?

The Command Design Pattern in Java is a behavioral design pattern that turns a request into a stand-alone object, allowing parameterization of clients with different requests, queuing of requests, and support for undoable operations.

  • The Command Pattern encapsulates a request as an object, allowing for the separation of sender and receiver.
  • Commands can be parameterized, meaning you can create different commands with different parameters without changing the invoker(responsible for initiating command execution).
  • It decouples the sender (client or invoker) from the receiver (object performing the operation), providing flexibility and extensibility.
  • The pattern supports undoable(action or a series of actions that can be reversed or undone in a system) operations by storing the state or reverse commands.

Components of the Command Design Pattern in Java

Below are the components of Command Design pattern in java:

1. Command Interface

The Command Interface is like a rulebook that all command classes follow. It declares a common method, execute(), ensuring that every concrete command knows how to perform its specific action. It sets the standard for all commands, making it easier for the remote control to manage and execute diverse operations without needing to know the details of each command.

2. Concrete Command Classes

Concrete Command Classes are the specific commands, like turning on a TV or adjusting the stereo volume. Each class encapsulates the details of a particular action. These classes act as executable instructions that the remote control can trigger without worrying about the nitty-gritty details of how each command accomplishes its task.

3. Invoker (Remote Control)

The Invoker, often a remote control, is the one responsible for initiating command execution. It holds a reference to a command but doesn't delve into the specifics of how each command works. It's like a button that, when pressed, makes things happen. The remote control's role is to coordinate and execute commands without getting involved in the complexities of individual actions.

4. Receiver (Devices)

The Receiver is the device that knows how to perform the actual operation associated with a command. It could be a TV, stereo, or any other device. Receivers understand the specific tasks mentioned in commands. If a command says, "turn on," the Receiver (device) knows precisely how to execute that action. The Receiver-Command relationship separates responsibilities, making it easy to add new devices or commands without messing with existing functionality.

Command Design Pattern Example in Java

Below is the example statement of the Command Design pattern in Java:

Imagine you are tasked with designing a remote control system for various electronic devices in a smart home. The devices include a TV, a stereo, and potentially other appliances. The goal is to create a flexible remote control that can handle different types of commands for each device, such as turning devices on/off, adjusting settings, or changing channels.

What can be the challenges while implementing this system?

  • First challenges is that devices can have different functionalities, so designing a remote control that can seamlessly handle different device types with varying functionalities without becoming overly complex or device-specific.
  • Implementing a remote control that supports various commands without tightly coupling ensuring the remote control can execute commands for different devices without needing extensive modifications for each new command or device type.
  • Designing a system that allows users to customize the behavior of the remote control dynamically

How Command Pattern help to solve above challenges?

The Command Pattern can be employed to address these challenges. It introduces a level of abstraction between the sender of a command (remote control) and the receiver of the command (electronic devices).

  • The Command Pattern decouples the sender (Invoker) from the receiver (Devices). The remote control doesn't need to know the specific details of how each device operates; it only triggers commands.
  • New devices or commands can be added without modifying existing code. The remote control can work with any device that implements the common command interface.
  • The remote control can dynamically change its behavior by associating different commands.

CommandPatternExampledrawio-(2)

Below is the code of above problem statement using Command Pattern:

1. Command Interface

The Command interface declares a method, often named execute(). This method is meant to encapsulate a specific operation. The interface sets a contract for concrete command classes, defining the execute() method that encapsulates the operation to be performed.

Java
// Command interface public interface Command {     void execute(); } 

2. Concrete Command Classes

Concrete command classes implement the Command interface. Each class encapsulates a specific operation related to devices. Each concrete command class provides a specific implementation of the execute() method, defining how a particular device operation (turning on, turning off, adjusting volume, changing channel) is executed.

Java
// Concrete command for turning a device on public class TurnOnCommand implements Command {     private Device device;      public TurnOnCommand(Device device) {         this.device = device;     }      @Override     public void execute() {         device.turnOn();     } }  // Concrete command for turning a device off public class TurnOffCommand implements Command {     private Device device;      public TurnOffCommand(Device device) {         this.device = device;     }      @Override     public void execute() {         device.turnOff();     } }  // Concrete command for adjusting the volume of a stereo public class AdjustVolumeCommand implements Command {     private Stereo stereo;      public AdjustVolumeCommand(Stereo stereo) {         this.stereo = stereo;     }      @Override     public void execute() {         stereo.adjustVolume();     } }  // Concrete command for changing the channel of a TV public class ChangeChannelCommand implements Command {     private TV tv;      public ChangeChannelCommand(TV tv) {         this.tv = tv;     }      @Override     public void execute() {         tv.changeChannel();     } } 

3. Receiver Classes (Devices)

The Device interface declares methods related to device functionality, such as turnOn() and turnOff(). This interface sets a contract for device classes, defining common operations that concrete devices should support.

Java
// Receiver interface public interface Device {     void turnOn();     void turnOff(); }  // Concrete receiver for a TV public class TV implements Device {     @Override     public void turnOn() {         System.out.println("TV is now on");     }      @Override     public void turnOff() {         System.out.println("TV is now off");     }      public void changeChannel() {         System.out.println("Channel changed");     } }  // Concrete receiver for a stereo public class Stereo implements Device {     @Override     public void turnOn() {         System.out.println("Stereo is now on");     }      @Override     public void turnOff() {         System.out.println("Stereo is now off");     }      public void adjustVolume() {         System.out.println("Volume adjusted");     } } 

4. Invoker Class (Remote Control):

The invoker class holds a reference to a Command object and triggers its execution through the execute() method. The invoker doesn't know the specific details of the command or the devices. It simply calls the execute() method on the current command, allowing for flexible and dynamic control over different devices.

Java
// Invoker public class RemoteControl {     private Command command;      public void setCommand(Command command) {         this.command = command;     }      public void pressButton() {         command.execute();     } } 

Complete code for the above example

Below is the complete code for the above example:

Java
// Command interface interface Command {     void execute(); }  // Concrete command for turning a device on class TurnOnCommand implements Command {     private Device device;      public TurnOnCommand(Device device) {         this.device = device;     }      @Override     public void execute() {         device.turnOn();     } }  // Concrete command for turning a device off class TurnOffCommand implements Command {     private Device device;      public TurnOffCommand(Device device) {         this.device = device;     }      @Override     public void execute() {         device.turnOff();     } }  // Concrete command for adjusting the volume of a stereo class AdjustVolumeCommand implements Command {     private Stereo stereo;      public AdjustVolumeCommand(Stereo stereo) {         this.stereo = stereo;     }      @Override     public void execute() {         stereo.adjustVolume();     } }  // Concrete command for changing the channel of a TV class ChangeChannelCommand implements Command {     private TV tv;      public ChangeChannelCommand(TV tv) {         this.tv = tv;     }      @Override     public void execute() {         tv.changeChannel();     } }  // Receiver interface interface Device {     void turnOn();     void turnOff(); }  // Concrete receiver for a TV class TV implements Device {     @Override     public void turnOn() {         System.out.println("TV is now on");     }      @Override     public void turnOff() {         System.out.println("TV is now off");     }      public void changeChannel() {         System.out.println("Channel changed");     } }  // Concrete receiver for a stereo class Stereo implements Device {     @Override     public void turnOn() {         System.out.println("Stereo is now on");     }      @Override     public void turnOff() {         System.out.println("Stereo is now off");     }      public void adjustVolume() {         System.out.println("Volume adjusted");     } }  // Invoker class RemoteControl {     private Command command;      public void setCommand(Command command) {         this.command = command;     }      public void pressButton() {         command.execute();     } }  // Example usage public class CommandPatternExample {     public static void main(String[] args) {         // Create devices         TV tv = new TV();         Stereo stereo = new Stereo();          // Create command objects         Command turnOnTVCommand = new TurnOnCommand(tv);         Command turnOffTVCommand = new TurnOffCommand(tv);         Command adjustVolumeStereoCommand = new AdjustVolumeCommand(stereo);         Command changeChannelTVCommand = new ChangeChannelCommand(tv);          // Create remote control         RemoteControl remote = new RemoteControl();          // Set and execute commands         remote.setCommand(turnOnTVCommand);         remote.pressButton(); // Outputs: TV is now on          remote.setCommand(adjustVolumeStereoCommand);         remote.pressButton(); // Outputs: Volume adjusted          remote.setCommand(changeChannelTVCommand);         remote.pressButton(); // Outputs: Channel changed          remote.setCommand(turnOffTVCommand);         remote.pressButton(); // Outputs: TV is now off     } } 
Output
TV is now on Volume adjusted Channel changed TV is now off 

When to use the Command Design Pattern

  • Decoupling is Needed:
    • Use the Command Pattern when you want to decouple the sender (requester) of a request from the object that performs the request.
    • This helps in making your code more flexible and extensible.
  • Undo/Redo Functionality is Required:
    • If you need to support undo and redo operations in your application, the Command Pattern is a good fit.
    • Each command can encapsulate an operation and its inverse, making it easy to undo or redo actions.
  • Support for Queues and Logging:
    • If you want to maintain a history of commands, log them, or even put them in a queue for execution, the Command Pattern provides a structured way to achieve this.
  • Dynamic Configuration:
    • When you need the ability to dynamically configure and assemble commands at runtime, the Command Pattern allows for flexible composition of commands.

When not to use the Command Design Pattern 

  • Simple Operations:
    • For very simple operations or one-off tasks, introducing the Command Pattern might be overkill.
    • It's beneficial when you expect your operations to become more complex or when you need to support undo/redo.
  • Tight Coupling is Acceptable:
    • If the sender and receiver of a request are tightly coupled and changes in one do not affect the other, using the Command Pattern might introduce unnecessary complexity.
  • Overhead is a Concern:
    • In scenarios where performance and low overhead are critical factors, introducing the Command Pattern might add some level of indirection and, in turn, impact performance.
  • Limited Use of Undo/Redo:
    • If your application does not require undo/redo functionality and you do not anticipate needing to support such features in the future, the Command Pattern might be unnecessary complexity.



Next Article
Bridge Method Design Pattern in Java
author
jhaashish03
Improve
Article Tags :
  • Design Pattern
  • System Design
  • Java Design Patterns

Similar Reads

  • Decorator Method Design Pattern in Java
    A structural design pattern called the Decorator Design Pattern enables the dynamic addition of functionality to specific objects without changing the behavior of other objects in the same class. To wrap concrete components, a collection of decorator classes must be created. Table of Content What is
    10 min read
  • Command Method | JavaScript Design Patterns
    The command method is a behavioral design pattern that encapsulates an incoming request into a standalone object. This object contains all the necessary information to perform a request including the method to call and parameters. Important Topics for the Command Method in JavaScript Design Patterns
    6 min read
  • Bridge Method Design Pattern in Java
    The Bridge Design Pattern is a structural design pattern that decouples an abstraction from its implementation so that the two can vary independently. This pattern is useful when both the abstractions and their implementations should be extensible by subclassing. The Bridge pattern allows us to avoi
    6 min read
  • Proxy Method Design Pattern in Java
    A Proxy Method or Proxy Design Pattern is a structural design pattern that provides a surrogate or placeholder for another object to control access to it. This pattern involves creating a new class, known as the proxy, which acts as an intermediary between a client and the real object. The proxy obj
    9 min read
  • Memento Design Pattern in Java
    The Memento design pattern in Java is a behavioral design pattern used to capture and restore the internal state of an object without exposing its implementation details. Important Topics for Memento Design Pattern in Java What is the Memento Design Pattern in Java?Components of Memento Design Patte
    9 min read
  • Facade Method Design Pattern in Java
    Facade Method Design Pattern is a structural design pattern that provides a simplified interface to a complex subsystem. It acts as a "front door," concealing the internal complexity of the subsystem and making it easier for clients to interact with it. In this article, we will get to know about wha
    9 min read
  • Mediator Design Pattern in Java
    The mediator design pattern defines an object that encapsulates how a set of objects interact. The Mediator is a behavioral pattern (like the Observer or the Visitor pattern) because it can change the program's running behavior. We are used to see programs that are made up of a large number of class
    4 min read
  • Command Method - Python Design Patterns
    Command Method is Behavioral Design Pattern that encapsulates a request as an object, thereby allowing for the parameterization of clients with different requests and the queuing or logging of requests. Parameterizing other objects with different requests in our analogy means that the button used to
    3 min read
  • Strategy Method Design Pattern in Java
    Strategy method or Strategy Design Pattern is a behavioral design pattern in Java that defines a family of algorithms, encapsulates each algorithm, and makes them interchangeable. It lets the client algorithm vary independently from the objects that use it. This pattern is useful when you have a fam
    11 min read
  • Template Method Design Pattern in Java
    Template Design Pattern or Template Method is the behavioral design pattern that defines the skeleton of an algorithm in the superclass but lets subclasses override specific steps of the algorithm without changing its structure. This pattern falls under the category of the "behavioral" design patter
    10 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences