黑马程序员技术交流社区
标题:
下面程序的运行结果是( )
[打印本页]
作者:
艺高人胆大
时间:
2016-5-12 21:36
标题:
下面程序的运行结果是( )
public static void main(String[] args) {
StringBuffer sb = new StringBuffer();
sb.append("qq").append("ww");
show(sb, "ss");
System.out.println(sb.length());
}
static void show(StringBuffer sb, String str) {
sb.append(str);
}
a) 4
b) 2
c) 6
d) 0
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2