为什么用append()方法分别追加字符串("imooc")和整数(520),hello与imooc之间有空格,imooc与520之间没有空格?
代码:
StringBuilder str =new StringBuilder ("hello");
str.append("imooc");
str.append("520");
System .out .println(str);
运行结果:
hello imooc520
代码:
StringBuilder str =new StringBuilder ("hello");
str.append("imooc");
str.append("520");
System .out .println(str);
运行结果:
hello imooc520
2018-05-31
举报