溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Java描述設(shè)計模式(20):命令模式

發(fā)布時間:2020-08-08 20:41:32 來源:網(wǎng)絡(luò) 閱讀:202 作者:知了一笑 欄目:編程語言

本文源碼:GitHub·點這里 || GitEE·點這里

一、生活場景

1、場景描述

智能電腦的品牌越來越多,由此誕生了一款電腦控制的APP,萬能遙控器,用戶在使用遙控器的時候,可以切換為自家電視的品牌,然后對電視進行控制。

2、代碼實現(xiàn)

public class C01_InScene {
    public static void main(String[] args) {
        TVClient tvClient = new TVClient() ;
        Remote remote = new RemoteApp(tvClient) ;
        UserClient userClient = new UserClient(remote) ;
        userClient.action("HM","換臺");
    }
}
/**
 * 遙控接口
 */
interface Remote {
    void controlTV (String tvType,String task);
}
/**
 * 遙控器APP
 */
class RemoteApp implements Remote {
    private TVClient tvClient = null ;
    public RemoteApp (TVClient tvClient){
        this.tvClient = tvClient ;
    }
    @Override
    public void controlTV(String tvType, String task) {
        tvClient.action(tvType,task);
    }
}
/**
 * 用戶端
 */
class UserClient {
    // 持有遙控器
    private Remote remote = null ;
    public UserClient (Remote remote){
        this.remote = remote ;
    }
    public void action (String tvType, String task){
        remote.controlTV(tvType,task);
    }
}
/**
 * 電視端
 */
class TVClient {
    public void action (String tvType, String task){
        System.out.println("TV品牌:"+tvType+";執(zhí)行:"+task);
    }
}

二、命令模式

1、基礎(chǔ)概念

命令模式屬于對象的行為模式。命令模式把一個請求或者操作封裝到一個對象中。把發(fā)出命令的動作和執(zhí)行命令的動作分割開,委派給不同的對象。命令模式允許請求的一方和接收的一方獨立開來,使得請求的一方不必知道接收請求的一方的接口,更不必知道請求是怎么被接收,以及操作是否被執(zhí)行。

2、模式圖解

Java描述設(shè)計模式(20):命令模式

3、核心角色

  • 命令角色

聲明所有具體命令類的抽象接口。

  • 具體命令角色

定義接收者和行為之間的交互方式:實現(xiàn)execute()方法,調(diào)用接收者的相應(yīng)操作 , 傳遞命令信息。

  • 請求者角色

負責(zé)調(diào)用命令對象執(zhí)行請求,相關(guān)的方法叫做行動方法。

  • 接收者角色

執(zhí)行請求。任何一個類都可以成為接收者,執(zhí)行請求的方法叫做行動方法。

4、源碼實現(xiàn)

public class C02_Command {
    public static void main(String[] args) {
        Receiver receiver = new Receiver();
        Command command = new ConcreteCommand(receiver);
        Invoker invoker = new Invoker(command);
        invoker.action("臥倒");
    }
}
/**
 * 命令角色
 */
interface Command {
    // 執(zhí)行方法
    void execute(String task);
}
/**
 * 具體命令角色類
 */
class ConcreteCommand implements Command {
    //持有相應(yīng)的接收者對象
    private Receiver receiver = null;
    public ConcreteCommand(Receiver receiver){
        this.receiver = receiver;
    }
    @Override
    public void execute(String task) {
        //接收方來真正執(zhí)行請求
        receiver.action(task);
    }
}
/**
 * 請求者角色類
 */
class Invoker {
    // 持有命令對象
    private Command command = null;
    public Invoker(Command command){
        this.command = command;
    }
    // 行動方法
    public void action(String task){
        command.execute(task);
    }
}
/**
 * 接收者角色類
 */
class Receiver {
    // 執(zhí)行命令操作
    public void action(String task){
        System.out.println("執(zhí)行命令:"+task);
    }
}

三、Spring框架應(yīng)用

Spring框架中封裝的JdbcTemplate類API使用到了命令模式。

1、JdbcOperations接口

public interface JdbcOperations {
    @Nullable
    <T> T execute(StatementCallback<T> var1) ;
}

2、JdbcTemplate類

這里只保留模式方法的代碼。

public class JdbcTemplate implements JdbcOperations {
    @Nullable
    public <T> T execute(StatementCallback<T> action) {
        try {
            T result = action.doInStatement(stmt);
        } catch (SQLException var9) {
        } finally {
        }
    }
}

3、StatementCallback接口

@FunctionalInterface
public interface StatementCallback<T> {
    @Nullable
    T doInStatement(Statement var1) ;
}

四、命令模式總結(jié)

  • 松散的耦合

命令模式使得命令發(fā)起者和命令執(zhí)行者解耦,發(fā)起命令的對象完全不知道具體實現(xiàn)對象是誰。這和常見的MQ消息隊列原理是類似的。

  • 動態(tài)的控制

命令模式把請求封裝起來,可以動態(tài)地對它進行參數(shù)化、隊列化和等操作和管理,使系統(tǒng)更加的靈活。

  • 良好的擴展性

命令發(fā)起者和命令執(zhí)行者實現(xiàn)完全解耦,因此擴展添加新命令很容易。

五、源代碼地址

GitHub·地址
https://github.com/cicadasmile/model-arithmetic-parent
GitEE·地址
https://gitee.com/cicadasmile/model-arithmetic-parent

Java描述設(shè)計模式(20):命令模式

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI