parent
77222b80fc
commit
9e116a4e90
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
@ -0,0 +1,10 @@
|
||||
package com.study.tank.command;
|
||||
|
||||
/**
|
||||
* @author xsj
|
||||
* @date 2022/11/1 10:08
|
||||
*/
|
||||
public abstract class Command {
|
||||
abstract void doIt();
|
||||
abstract void unDo();
|
||||
}
|
@ -0,0 +1,38 @@
|
||||
package com.study.tank.command;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author xsj
|
||||
* @date 2022/11/1 10:30
|
||||
*/
|
||||
public class CommandChain extends Command {
|
||||
int index = 0;
|
||||
List<Command> commandList = new ArrayList<>();
|
||||
|
||||
public CommandChain() {
|
||||
Content c = new Content();
|
||||
this.add(new InsertCommand(c));
|
||||
this.add(new CopyCommand(c));
|
||||
this.add(new DeleteCommand(c));
|
||||
}
|
||||
|
||||
public void add(Command command) {
|
||||
this.commandList.add(command);
|
||||
}
|
||||
|
||||
@Override
|
||||
void doIt() {
|
||||
for (int i = 0; i < commandList.size(); i++) {
|
||||
commandList.get(i).doIt();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
void unDo() {
|
||||
for (int i = commandList.size(); i > 0; i--) {
|
||||
commandList.get(i - 1).unDo();
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.study.tank.command;
|
||||
|
||||
/**
|
||||
* @author xsj
|
||||
* @date 2022/11/1 10:29
|
||||
*/
|
||||
public class CommandMain {
|
||||
public static void main(String[] args) {
|
||||
CommandChain chain = new CommandChain();
|
||||
chain.doIt();
|
||||
chain.unDo();
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package com.study.tank.command;
|
||||
|
||||
import org.springframework.beans.BeanUtils;
|
||||
|
||||
/**
|
||||
* @author xsj
|
||||
* @date 2022/11/1 10:17
|
||||
*/
|
||||
public class Content {
|
||||
public String msg = "请操作数据-----";
|
||||
|
||||
public Content() {
|
||||
System.out.println("原始数据:" + msg);
|
||||
}
|
||||
}
|
@ -0,0 +1,29 @@
|
||||
package com.study.tank.command;
|
||||
|
||||
/**
|
||||
* @author xsj
|
||||
* @date 2022/11/1 10:09
|
||||
*/
|
||||
public class DeleteCommand extends Command {
|
||||
|
||||
Content c;
|
||||
String delete = "";
|
||||
private final int index = 2;
|
||||
|
||||
public DeleteCommand(Content c) {
|
||||
this.c = c;
|
||||
}
|
||||
|
||||
@Override
|
||||
void doIt() {
|
||||
delete = c.msg;
|
||||
c.msg = "";
|
||||
System.out.println("删除新数据操作后:" + c.msg);
|
||||
}
|
||||
|
||||
@Override
|
||||
void unDo() {
|
||||
c.msg = delete;
|
||||
System.out.println("取消删除新数据操作后:" + c.msg);
|
||||
}
|
||||
}
|
@ -0,0 +1,28 @@
|
||||
package com.study.tank.command;
|
||||
|
||||
/**
|
||||
* @author xsj
|
||||
* @date 2022/11/1 10:09
|
||||
*/
|
||||
public class InsertCommand extends Command {
|
||||
|
||||
Content c;
|
||||
String sortString = "baidu.com";
|
||||
private final int index = 0;
|
||||
|
||||
public InsertCommand(Content c) {
|
||||
this.c = c;
|
||||
}
|
||||
|
||||
@Override
|
||||
void doIt() {
|
||||
c.msg += sortString;
|
||||
System.out.println("插入新数据操作后:" + c.msg);
|
||||
}
|
||||
|
||||
@Override
|
||||
void unDo() {
|
||||
c.msg = c.msg.substring(0, c.msg.length() - sortString.length());
|
||||
System.out.println("取消插入新数据操作后:"+c.msg);
|
||||
}
|
||||
}
|
@ -0,0 +1,49 @@
|
||||
package com.study.tank.sate;
|
||||
|
||||
/**
|
||||
* @author xsj
|
||||
* @date 2022/11/1 15:42
|
||||
*/
|
||||
public class Car {
|
||||
private String name;
|
||||
private CarSatesDict sate;
|
||||
private CarSate carSate;
|
||||
|
||||
public Car(String name,CarSatesDict sate) {
|
||||
this.name = name;
|
||||
this.sate = sate;
|
||||
switch (sate){
|
||||
case OPEN:
|
||||
this.carSate = new OpenSateCar();
|
||||
break;
|
||||
case CLOSED:
|
||||
this.carSate = new ClosedCarSate();
|
||||
break;
|
||||
case RUNNING:
|
||||
this.carSate = new RunCarSate();
|
||||
break;
|
||||
case STOP:
|
||||
this.carSate = new StopCarSate();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void open() {
|
||||
carSate.open();
|
||||
}
|
||||
|
||||
void closed() {
|
||||
carSate.closed();
|
||||
}
|
||||
|
||||
void running() {
|
||||
carSate.running();
|
||||
}
|
||||
|
||||
void stop() {
|
||||
carSate.stop();
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package com.study.tank.sate;
|
||||
|
||||
/**
|
||||
* @author xsj
|
||||
* @date 2022/11/1 15:53
|
||||
*/
|
||||
public class CarMain {
|
||||
|
||||
public static void main(String[] args) {
|
||||
Car car = new Car("荣威", CarSatesDict.CLOSED);
|
||||
car.open();
|
||||
car.closed();
|
||||
car.running();
|
||||
car.stop();
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package com.study.tank.sate;
|
||||
|
||||
/**
|
||||
* @author xsj
|
||||
* @date 2022/11/1 15:44
|
||||
*/
|
||||
public abstract class CarSate {
|
||||
abstract void open();
|
||||
abstract void closed();
|
||||
abstract void running();
|
||||
abstract void stop();
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package com.study.tank.sate;
|
||||
|
||||
/**
|
||||
* @author xsj
|
||||
* @date 2022/11/1 15:59
|
||||
*/
|
||||
public enum CarSatesDict {
|
||||
OPEN,CLOSED,RUNNING,STOP
|
||||
}
|
@ -0,0 +1,28 @@
|
||||
package com.study.tank.sate;
|
||||
|
||||
/**
|
||||
* @author xsj
|
||||
* @date 2022/11/1 15:49
|
||||
*/
|
||||
public class ClosedCarSate extends CarSate{
|
||||
|
||||
@Override
|
||||
void open() {
|
||||
System.out.println("关门状态,可以开门-------");
|
||||
}
|
||||
|
||||
@Override
|
||||
void closed() {
|
||||
System.out.println("关门状态无法closed-------");
|
||||
}
|
||||
|
||||
@Override
|
||||
void running() {
|
||||
System.out.println("关门状态,可以running-------");
|
||||
}
|
||||
|
||||
@Override
|
||||
void stop() {
|
||||
System.out.println("关门状态,可以stop-------");
|
||||
}
|
||||
}
|
@ -0,0 +1,28 @@
|
||||
package com.study.tank.sate;
|
||||
|
||||
/**
|
||||
* @author xsj
|
||||
* @date 2022/11/1 15:47
|
||||
*/
|
||||
public class OpenSateCar extends CarSate{
|
||||
|
||||
@Override
|
||||
void open() {
|
||||
System.out.println("开门状态无法开门-------");
|
||||
}
|
||||
|
||||
@Override
|
||||
void closed() {
|
||||
System.out.println("(当前开门)可以调用closed-------");
|
||||
}
|
||||
|
||||
@Override
|
||||
void running() {
|
||||
System.out.println("开门状态无法调用running-------");
|
||||
}
|
||||
|
||||
@Override
|
||||
void stop() {
|
||||
System.out.println("开门状态无法调用stop-------");
|
||||
}
|
||||
}
|
Loading…
Reference in new issue