码迷,mamicode.com
首页 > 编程语言 > 详细

Java链式写法

时间:2019-09-30 16:56:59      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:img   bsp   html   int   解析   info   pac   tle   package   

原创:转载需注明原创地址 https://www.cnblogs.com/fanerwei222/p/11613067.html

 

Java 链式写法:详细看代码

package chain;

/**
 * TODO
 * 解析器
 */
public class Parser {

    private String id;
    private String mode;
    private String concatIdMode;

    public static Parser parse(){
        return new Parser();
    }

    public Parser setParserId(String id){
        this.id = id;
        return this;
    }

    public Parser setParserMode(String mode){
        this.mode = mode;
        return this;
    }

    public Parser concat(){
        this.concatIdMode = "id: " + this.id + "  "  + "模式 : " + this.mode;
        return this;
    }

    public String print(){
        System.out.println("解析器的id和模式为: " + this.concatIdMode);

        return this.concatIdMode;
    }
}
package chain;

/**
 * TODO
 * 链式
 */
public class Chains {

    public static void main(String[] args) {
        String concat = Parser.parse()
                .setParserId("12")
                .setParserMode("dev")
                .concat()
                .print();
        System.out.println(concat);
    }
}

打印结果:

技术图片

 

Java链式写法

标签:img   bsp   html   int   解析   info   pac   tle   package   

原文地址:https://www.cnblogs.com/fanerwei222/p/11613067.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!