⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 remoteloader.java

📁 深入浅出设计模式
💻 JAVA
字号:
package headfirst.command.undo;public class RemoteLoader { 	public static void main(String[] args) {		RemoteControlWithUndo remoteControl = new RemoteControlWithUndo(); 		Light livingRoomLight = new Light("Living Room"); 		LightOnCommand livingRoomLightOn = 				new LightOnCommand(livingRoomLight);		LightOffCommand livingRoomLightOff = 				new LightOffCommand(livingRoomLight); 		remoteControl.setCommand(0, livingRoomLightOn, livingRoomLightOff); 		remoteControl.onButtonWasPushed(0);		remoteControl.offButtonWasPushed(0);		System.out.println(remoteControl);		remoteControl.undoButtonWasPushed();		remoteControl.offButtonWasPushed(0);		remoteControl.onButtonWasPushed(0);		System.out.println(remoteControl);		remoteControl.undoButtonWasPushed();		CeilingFan ceilingFan = new CeilingFan("Living Room");   		CeilingFanMediumCommand ceilingFanMedium = 				new CeilingFanMediumCommand(ceilingFan);		CeilingFanHighCommand ceilingFanHigh = 				new CeilingFanHighCommand(ceilingFan);		CeilingFanOffCommand ceilingFanOff = 				new CeilingFanOffCommand(ceilingFan);  		remoteControl.setCommand(0, ceilingFanMedium, ceilingFanOff);		remoteControl.setCommand(1, ceilingFanHigh, ceilingFanOff);   		remoteControl.onButtonWasPushed(0);		remoteControl.offButtonWasPushed(0);		System.out.println(remoteControl);		remoteControl.undoButtonWasPushed();  		remoteControl.onButtonWasPushed(1);		System.out.println(remoteControl);		remoteControl.undoButtonWasPushed();	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -