方法一:使用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类的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); } }
新闻热点
疑难解答