码迷,mamicode.com
首页 > 其他好文 > 详细

字节集-编码操作-中繁体-StringBuffer-包装类

时间:2019-06-08 19:12:21      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:show   isp   none   OLE   int   alt   closed   div   home   

技术图片
package workhome;

public class BuilderDemo {
public static void main(String[] args) {
    //builder模式
    //方法链编程    
    Person1 p = new Person1()
                .setName("tom")
                .setAge(12)
                .setSex("女");
}
}
BuilderDemo
技术图片
package workhome;

public class Person1 {

    private String name;
    private int age;
    private String sex;
    
    
    public Person1 getName() {
        return this;
    }
    public Person1 setName(String name) {
        this.name = name;
        return this;
    }
    public Person1 getAge() {
        return this;
    }
    public Person1 setAge(int age) {
        this.age = age;
        return this;
    }
    public Person1 getSex() {
        return this;
    }
    public Person1 setSex(String sex) {
        this.sex = sex;
        return this;
    }
    
    
}
Person1
技术图片
package workhome;

public class StringBuilderDemo {
public static void main(String[] args) {
    StringBuilder b=new StringBuilder();
    b.append(1)
     .append(2)
     .append(3);
}
}
StringBuilderDemo

 

技术图片

技术图片

技术图片

技术图片

技术图片

技术图片

技术图片
package workhome;

public class WrapperDemo {
public static void main(String[] args) {
    Byte b=new Byte((byte)12);
    Short s= new Short((short)12);
    
    Long l=new Long(12);
    Boolean bb=new Boolean(true);
    long ll=11L;
    float f=12.3f;
    Integer.toHexString(100);
}
}
WrapperDemo

 

字节集-编码操作-中繁体-StringBuffer-包装类

标签:show   isp   none   OLE   int   alt   closed   div   home   

原文地址:https://www.cnblogs.com/King-boy/p/10991240.html

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