职责链-坦克大战-js

本文通过JavaScript实现职责链设计模式,展示了如何使用抽象类和继承来创建处理请求的链。具体包括SortHandler、RunHandler和HongwaiHandler三个类,它们分别负责发射炮弹、跑和红外扫描的任务。客户端通过调用handleRequest方法传递命令,由链上的处理者按顺序处理。
摘要由CSDN通过智能技术生成
console.log('职责链');
class Tank {

}
class AbstractHandler{
    constructor() {
        this.comand = 0;
        this.function = "";
        this.nexHandler = null;
    }
    handleRequest(comand) {
        if (this.comand == comand) {
            console.log(this.function);
        } else {
            if (this.nexHandler != null) {
                this.nexHandler.handleRequest(comand);
            }
        }
    }  
}
class SortHandler extends AbstractHandler {
    constructor() {
        super();
        this.comand = 1;
        this.function = "发射炮弹";
        this.nexHandler = new RunHandler();
    }
      
}
class RunHandler extends AbstractHandler {
    constructor() {
        super();
        this.comand = 2;
        this.function = "跑";
        this.nexHandler = new HongwaiHandler();
    }
}
class HongwaiHandler extends AbstractHandler {
    constructor() {
        super();
        this.comand = 3;
        this.function = "红外扫描";
    }
}

// 客户端
class Client {
    main() {
        var sortHandler = new SortHandler();
        sortHandler.handleRequest(3);
    }
}
var client = new Client();
client.main();

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值