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

StringBuffer类

时间:2018-01-08 18:30:16      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:ringbuf   static   main   app   []   pen   需要   out   pre   

字符串一般用String类型表示

但是String常量 一旦声明不可改变

如果需要频繁修改字符串 需要使用StringBuffer类

以下为StringBuffer代码

public static void main(String[] args) throws Exception{
    StringBuffer buf = new StringBuffer();
    buf.append(“HEllo”).append("MLDN").append("!!");
    change(buf);
    System.out.print(buf);
}
public static void change(StringBuffer temp){
    temp.append("/n").append("hello");
}

StringBuffer类

标签:ringbuf   static   main   app   []   pen   需要   out   pre   

原文地址:https://www.cnblogs.com/wangyufei123/p/8243827.html

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