熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Java開源技術 >> 正文

關於build tool的構想 從Ant說起[8]

2022-06-13   來源: Java開源技術 

    java代碼

    interface CommandBinder{
    Command bind(Object v);
    }

    然後定義BoundCommand類

    java代碼

    class BoundCommand implements Command{
    private final Command c;
    private final CommandBinder c;
    public Object execute(CommandContext ctxt){
    final Object v = return cexecute(ctxt);
    return cbind(v)execute(ctxt);
    }
    BoundCommand (Command c CommandBinder c){
    thisc = c;
    thisc = c;
    }
    }

    先透露一下這個BoundCommand非常重要就是它負責在不同的command間傳遞信息

[]  []  []  []  []  []  []  []  []  []  []  


From:http://tw.wingwit.com/Article/program/Java/ky/201311/29265.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.