命令模式

定义:将一个请求封装为一个对象,使发出请求的责任和执行请求的责任分割开。这样两者之间通过命令对象进行沟通,这样方便将命令对象进行储存、传递、调用、增加与管理。

主要解决:在软件系统中,行为请求者与行为实现者通常是一种紧耦合的关系,但某些场合,比如需要对行为进行记录、撤销或重做、事务等处理时,这种无法抵御变化的紧耦合的设计就不太合适。

cs 复制代码
namespace ConsoleApp1
{
	// 实现者
	public interface ILight
	{
		void On();
		void Off();
	}

	class KitchenLight : ILight
	{
		public void On()
		{
			Console.WriteLine("Kitchen light is on");
		}

		public void Off()
		{
			Console.WriteLine("Kitchen light is off");
		}

	}

	class LivingRoomLight : ILight
	{
		public void On()
		{
			Console.WriteLine("Living room light is on");
		}

		public void Off()
		{
			Console.WriteLine("Living room light is off");
		}

	}

	// 命令抽象类
	public interface ICommand
	{
		void execute();
		void undo();
	}

	// 具体命令对象
	class LightOnCommand : ICommand
	{
		private ILight light;

		public LightOnCommand(ILight light) {
			this.light = light;
		}

        public void execute()
		{
			light.On();
        }

        public void undo()
        {
			light.Off();
		}
    }

	class LightOffCommand : ICommand
	{
		private ILight light;

		public LightOffCommand(ILight light)
		{
			this.light = light;
		}

		public void execute()
		{
			light.Off();
		}

		public void undo()
		{
			light.On();
		}
	}

	// 请求者
	class RemoteControl
	{
		private ICommand command;

		public void SetCommand(ICommand command) {
			this.command = command;
		}

		public void PressButton()
		{
			command.execute();
		}

		public void PressUndo()
		{
			command.undo();
		}
	}


	// 客户类(Client)
	class Program
	{
		static void Main(string[] args)
		{
			KitchenLight kitchenLight = new KitchenLight();
			LivingRoomLight livingRoomLight = new LivingRoomLight();

			LightOnCommand lightOnCommand = new LightOnCommand(kitchenLight);
			LightOffCommand lightOffCommand = new LightOffCommand(kitchenLight);

			LightOnCommand lightOnCommand2 = new LightOnCommand(livingRoomLight);
			LightOffCommand lightOffCommand2 = new LightOffCommand(livingRoomLight);

			RemoteControl remoteControl = new RemoteControl();

			remoteControl.SetCommand(lightOnCommand);
			remoteControl.PressButton();
			remoteControl.PressUndo();

			remoteControl.SetCommand(lightOnCommand2);
			remoteControl.PressButton();
			remoteControl.PressUndo();

		}
	}
}
相关推荐
博风2 天前
设计模式:4、命令模式(双重委托)
设计模式·命令模式
小gpt&5 天前
qt布局设置(1,2,4,6,8,9,12,16等布局)
开发语言·qt·命令模式
咩咩觉主6 天前
C# x Unity 从玩家控制类去分析命令模式该如何使用
设计模式·命令模式
Bruce小鬼7 天前
QT基本绘图
开发语言·qt·命令模式
q567315237 天前
用 PHP或Python加密字符串,用iOS解密
java·python·ios·缓存·php·命令模式
无敌岩雀8 天前
C++设计模式行为模式———命令模式
c++·设计模式·命令模式
丶白泽9 天前
重修设计模式-行为型-命令模式
设计模式·命令模式
CV猿码人11 天前
设计模式-命令模式
设计模式·命令模式
G皮T12 天前
【设计模式】行为型模式(二):策略模式、命令模式
java·设计模式·策略模式·命令模式·command·strategy
q5673152312 天前
如何在下载我上传的数据时自动设置 Content-Type
java·开发语言·python·缓存·命令模式