Java8之被简化的设计模式

Java8命令模式简化



public class Lignt {

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

    //关灯操作
    public void off(){
        System.out.println("关灯操作");
    }
}


public interface Command {

    //执行函数接口
    public void execute();
}


//关灯指令
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();
    }
}

//执行者
public class LightSwitch {

    //执行顺序
    private List <Command>queue=new ArrayList <>(  );

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

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

public class LightCommandTest {
    public static void main(String[] args) {
        //实例化灯对象
        Lignt light=new Lignt();
        //开灯操作
        Command fileUpcommand=new FillUpCommand(  light);
        //关灯指令
        Command fileDownCommand=new FilpDownCommand( light );

        //执行者
        LightSwitch lightSwitch=new LightSwitch();
        lightSwitch.add( fileUpcommand );
        lightSwitch.add( fileDownCommand );
        lightSwitch.add( fileUpcommand );
        lightSwitch.add( fileDownCommand );
        lightSwitch.execute();

    }
}

----------------------------------------------------Java8------------------------------------------------------
public class LightSwitchFP {
    //首先我们直接使用Java8提供的Consumer函数接口作为我们的命令接口,因为有了lambda表达式,
   // 我们根本无需在单独为具体命令对象创建类型,而通过传入labmda表达式来完成具体命令对象的创建;

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

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

    //执行操作
    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();
        //关灯
        Consumer<Lignt>ofLignt=lignt1 -> lignt.off();
        //创建执行者
        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简介
Consumer的作用是给定义一个参数,对其进行(消费)处理,处理的方式可以是任意操作.

public interface Consumer<T> {

    /**
     * Performs this operation on the given argument.
     *接收单个参数,返回为空
     * @param t the input argument
     */
    void accept(T t);

    /**
  这是一个用来做链式处理的方法,该方法返回的是一个Consumer对象,假设调用者的Consumer对象为A,输入参数Consumer对象设为B,那么返回的Consumer对象C的accept方法的执行体就是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当中的设计模式
        //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 );

    }
}
控制台输出  
TestManager
TestManager1
应用场景可以为多个操作同时执行
Process finished with exit code 0

策略模式

//策略模式
public interface Strategy {
    //计算
    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的接口 返回一个对象的实例
    //BinaryOperator  接受2个参数 
    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 ) );
    }
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,186评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,858评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,620评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,888评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,009评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,149评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,204评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,956评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,385评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,698评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,863评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,544评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,185评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,899评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,141评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,684评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,750评论 2 351

推荐阅读更多精彩内容