A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

看看下面的代码,知道结果吗?
  1. public class StringBuilderStringTest {
  2.         public static void main(String[] args) {
  3.                 String s1="hello";
  4.                 method1(s1);//调用了method1方法
  5.                 System.out.println("s1:"+s1);
  6.                
  7.                 StringBuilder buf=new StringBuilder("hello");
  8.                 method2(buf);//调用了method2方法
  9.                 System.out.println("buf:"+buf);
  10.                
  11.         }
  12.         public static void method1(String s){
  13.                 s="world";               
  14.         }
  15.         public static void method2(StringBuilder buf){
  16.                 buf.append("world");
  17.         }
  18. }
复制代码

游客,如果您要查看本帖隐藏内容请回复


5 个回复

倒序浏览
哦说的很好 就是不知道答案在哪里
回复 使用道具 举报
hello
helloworld
回复 使用道具 举报
hello   helloworld
回复 使用道具 举报
s1:hello
buf:helloworld
回复 使用道具 举报
s1:hello
buf:helloworld
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马