首页 > 学院 > 开发设计 > 正文

String&StringBuffer类转换

2019-11-14 11:13:05
字体:
来源:转载
供稿:网友

一、String转化为StringBuffer类

方法一:使用StringBuffer类的构造方法,public StringBuffer(String str) public class Person { public static void main(String[] args) { String str ="hello world"; StringBuffer buf = new StringBuffer(); buf.append(str); System.out.PRintln(buf); } } 方法二:利用StringBuffer类的append()方法 public class Person { public static void main(String[] args) { String str ="hello world"; StringBuffer buf = new StringBuffer(str); System.out.println(buf); } }

二、StringBuffer转化为String

利用StringBuffer类的toString()方法完成 public class Person { public static void main(String[] args) { StringBuffer buf=new StringBuffer(); buf.append("hello world"); String str = buf.toString(); System.out.println(str); } }


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表