Java8之被簡(jiǎn)化的設(shè)計(jì)模式

Java8命令模式簡(jiǎn)化



public class Lignt {

    //開燈操作
    public void on(){
        System.out.println("Open the Light");
    }

    //關(guān)燈操作
    public void off(){
        System.out.println("關(guān)燈操作");
    }
}


public interface Command {

    //執(zhí)行函數(shù)接口
    public void execute();
}


//關(guān)燈指令
public class FilpDownCommand implements  Command {

    private Lignt lignt;

    public FilpDownCommand(Lignt lignt) {
        this.lignt = lignt;
    }

    public Lignt getLignt() {
        return lignt;
    }

    public void setLignt(Lignt lignt) {
        this.lignt = lignt;
    }

    @Override
    public void execute() {
        lignt.off();
    }
}


//開燈指令
public class FillUpCommand implements  Command {
    private Lignt lignt;

    public Lignt getLignt() {
        return lignt;
    }

    public void setLignt(Lignt lignt) {
        this.lignt = lignt;
    }

    public FillUpCommand(Lignt lignt) {
        this.lignt = lignt;
    }

    @Override
    public void execute() {
        this.lignt.on();
    }
}

//執(zhí)行者
public class LightSwitch {

    //執(zhí)行順序
    private List <Command>queue=new ArrayList <>(  );

    //添加執(zhí)行命令
    public void add(Command command){
        this.queue.add(  command);
    }

    //執(zhí)行
    public void execute(){
        queue.forEach( e->{
            //執(zhí)行命令操作
            e.execute();
        } );
    }
}

public class LightCommandTest {
    public static void main(String[] args) {
        //實(shí)例化燈對(duì)象
        Lignt light=new Lignt();
        //開燈操作
        Command fileUpcommand=new FillUpCommand(  light);
        //關(guān)燈指令
        Command fileDownCommand=new FilpDownCommand( light );

        //執(zhí)行者
        LightSwitch lightSwitch=new LightSwitch();
        lightSwitch.add( fileUpcommand );
        lightSwitch.add( fileDownCommand );
        lightSwitch.add( fileUpcommand );
        lightSwitch.add( fileDownCommand );
        lightSwitch.execute();

    }
}

----------------------------------------------------Java8------------------------------------------------------
public class LightSwitchFP {
    //首先我們直接使用Java8提供的Consumer函數(shù)接口作為我們的命令接口,因?yàn)橛辛薼ambda表達(dá)式削咆,
   // 我們根本無(wú)需在單獨(dú)為具體命令對(duì)象創(chuàng)建類型恋博,而通過傳入labmda表達(dá)式來完成具體命令對(duì)象的創(chuàng)建雹仿;

    private List <Consumer<Lignt>>queue=new ArrayList <>(  );

    public void add(Consumer<Lignt>consumer){
        queue.add( consumer );
    }

    //執(zhí)行操作
    public void execute(Lignt lignt){
        queue.forEach( e->{
            e.accept( lignt);
        } );
    }
}

public class LightJava8Command {
    public static void main(String[] args) {
        Lignt lignt=new Lignt();
         //開燈
        Consumer<Lignt>onLignt=lignt1 -> lignt.on();
        //關(guān)燈
        Consumer<Lignt>ofLignt=lignt1 -> lignt.off();
        //創(chuàng)建執(zhí)行者
        onLignt.andThen( ofLignt ).andThen( onLignt ).andThen( ofLignt ).accept( lignt );
//        LightSwitchFP lightSwitch = new LightSwitchFP();
//        lightSwitch.add(onLignt);
//        lightSwitch.add(ofLignt);
//        lightSwitch.add(onLignt);
//        lightSwitch.add(ofLignt);
//        lightSwitch.execute(lignt);
    }
}

Consumer簡(jiǎn)介
Consumer的作用是給定義一個(gè)參數(shù),對(duì)其進(jìn)行(消費(fèi))處理,處理的方式可以是任意操作.

public interface Consumer<T> {

    /**
     * Performs this operation on the given argument.
     *接收單個(gè)參數(shù)重付,返回為空
     * @param t the input argument
     */
    void accept(T t);

    /**
  這是一個(gè)用來做鏈?zhǔn)教幚淼姆椒ǎ摲椒ǚ祷氐氖且粋€(gè)Consumer對(duì)象障贸,假設(shè)調(diào)用者的Consumer對(duì)象為A错森,輸入?yún)?shù)Consumer對(duì)象設(shè)為B,那么返回的Consumer對(duì)象C的accept方法的執(zhí)行體就是A.accept()+B.accept()
     */
    default Consumer<T> andThen(Consumer<? super T> after) {
        Objects.requireNonNull(after);
        return (T t) -> { accept(t); after.accept(t); };
    }
}

demo如下


public class Java8_Example {
    public static void main(String[] args) {
        //Java8當(dāng)中的設(shè)計(jì)模式
        //1.命令模式
        Lignt lignts=new Lignt();
        Consumer<Lignt>consumer=lignt -> System.out.println("TestManager");
        Consumer<Lignt>consumer1=lignt -> System.out.println("TestManager1");
        consumer.andThen( consumer1 ).accept( lignts );

    }
}
控制臺(tái)輸出  
TestManager
TestManager1
應(yīng)用場(chǎng)景可以為多個(gè)操作同時(shí)執(zhí)行
Process finished with exit code 0

策略模式

//策略模式
public interface Strategy {
    //計(jì)算
    public Integer compute(Integer a,Integer b);
}

//加
public class Add implements  Strategy {

    @Override
    public Integer compute(Integer a, Integer b) {
        return a+b;
    }
}
//乘
public class Multiply implements  Strategy {

    @Override
    public Integer compute(Integer a, Integer b) {
        return a*b;
    }
}
public class StrageGyTest {
    public static void main(String[] args) {
        Strategy strategy = new Add();
        Context context = new Context( strategy );
        Integer c = context.use( 1, 2 );
        System.out.println( c );
    }
}
----------------------------------------------Java8----------------------------------------------------------
public class ContextFp {
    private BinaryOperator<Integer>binaryOperator;
    public ContextFp(BinaryOperator binaryOperator){
        this.binaryOperator=binaryOperator;
    }

    public Integer use(Integer first,Integer second){
        Integer apply = binaryOperator.apply( first,second);
        return apply;
    }
}

枚舉封裝方法

public enum StrageEnum {
    ADD( () -> (x, y) -> x + y ),
    MULTIPLY( () -> (x, y) -> x * y );

    //suppiler  作為java8的接口 返回一個(gè)對(duì)象的實(shí)例
    //BinaryOperator  接受2個(gè)參數(shù) 
    private Supplier <BinaryOperator <Integer>> operation;

    private StrageEnum(Supplier <BinaryOperator <Integer>> operation) {
        this.operation = operation;
    }

    public BinaryOperator <Integer> get() {
        return operation.get();
    }
}

public class ContextFPEnum {
    private StrageEnum strageEnum;

    public ContextFPEnum(StrageEnum strageEnum){
        this.strageEnum=strageEnum;
    }

    public Integer use(Integer first,Integer second){
        return strageEnum.get().apply( first,second );
    }

}


public class StrageGyJava8Test {

  //  public static final BinaryOperator <Integer> addBinary = (op1, op2) -> op1 + op2;
   // public static final BinaryOperator <Integer> multiply = (op1, op2) -> op1 * op2;

    public static void main(String[] args) {
//        ContextFp contextFp=new ContextFp( addBinary );
//        System.out.println(contextFp.use( 10,11));
//        ContextFp contextFp1=new ContextFp( multiply );
//        System.out.println(contextFp1.use( 1,2 ));
        //累加
        ContextFPEnum contextFPEnum = new ContextFPEnum( StrageEnum.ADD );
        System.out.println( contextFPEnum.use( 1, 2 ) );
        //乘
        ContextFPEnum contextFPEnum1 = new ContextFPEnum( StrageEnum.MULTIPLY );
        System.out.println( contextFPEnum1.use( 2, 3 ) );
    }
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末篮洁,一起剝皮案震驚了整個(gè)濱河市涩维,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌嘀粱,老刑警劉巖激挪,帶你破解...
    沈念sama閱讀 206,968評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件辰狡,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡垄分,警方通過查閱死者的電腦和手機(jī)宛篇,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來薄湿,“玉大人叫倍,你說我怎么就攤上這事〔蛄觯” “怎么了吆倦?”我有些...
    開封第一講書人閱讀 153,220評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)坐求。 經(jīng)常有香客問我蚕泽,道長(zhǎng),這世上最難降的妖魔是什么桥嗤? 我笑而不...
    開封第一講書人閱讀 55,416評(píng)論 1 279
  • 正文 為了忘掉前任须妻,我火速辦了婚禮,結(jié)果婚禮上泛领,老公的妹妹穿的比我還像新娘荒吏。我一直安慰自己,他們只是感情好渊鞋,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評(píng)論 5 374
  • 文/花漫 我一把揭開白布绰更。 她就那樣靜靜地躺著,像睡著了一般锡宋。 火紅的嫁衣襯著肌膚如雪儡湾。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,144評(píng)論 1 285
  • 那天员辩,我揣著相機(jī)與錄音盒粮,去河邊找鬼。 笑死奠滑,一個(gè)胖子當(dāng)著我的面吹牛妒穴,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播杰赛,決...
    沈念sama閱讀 38,432評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼矮台,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼根时!你這毒婦竟也來了蛤迎?” 一聲冷哼從身側(cè)響起含友,我...
    開封第一講書人閱讀 37,088評(píng)論 0 261
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤窘问,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后把鉴,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,586評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡庭砍,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評(píng)論 2 325
  • 正文 我和宋清朗相戀三年逗威,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了凯旭。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片使套。...
    茶點(diǎn)故事閱讀 38,137評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖嫉柴,靈堂內(nèi)的尸體忽然破棺而出计螺,到底是詐尸還是另有隱情瞧壮,我是刑警寧澤,帶...
    沈念sama閱讀 33,783評(píng)論 4 324
  • 正文 年R本政府宣布陈轿,位于F島的核電站,受9級(jí)特大地震影響蛾娶,放射性物質(zhì)發(fā)生泄漏潜秋。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評(píng)論 3 307
  • 文/蒙蒙 一揍愁、第九天 我趴在偏房一處隱蔽的房頂上張望杀饵。 院中可真熱鬧,春花似錦朽缎、人聲如沸谜悟。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)蔚叨。三九已至,卻和暖如春邢锯,著一層夾襖步出監(jiān)牢的瞬間丹擎,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評(píng)論 1 262
  • 我被黑心中介騙來泰國(guó)打工蒂培, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留毁渗,地道東北人单刁。 一個(gè)月前我還...
    沈念sama閱讀 45,595評(píng)論 2 355
  • 正文 我出身青樓羔飞,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親么伯。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容