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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© liuzegang 中级黑马   /  2016-2-6 18:24  /  782 人查看  /  10 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

public class Demo {
        public static void main(String[] args) {
                String s1 = "hello";
                String s2 = "world";
                System.out.println(s1 + "---" + s2);
                change(s1, s2);
                System.out.println(s1 + "---" + s2);
        }
        public static void change(String s1, String s2) {
                s1 = s2;
                s2 = s1 + s2;
        }
}

10 个回复

倒序浏览
都是 hello---world
回复 使用道具 举报
hello---world
回复 使用道具 举报
hello---woeld
回复 使用道具 举报
hello---world
回复 使用道具 举报
终于搞懂了,String是常量
回复 使用道具 举报
hello--world
hello--world
基本数据类型,都是按值传递,,,
回复 使用道具 举报
hello---world
回复 使用道具 举报
hello ———— world
回复 使用道具 举报
看来 都知道啊。。。hello---world
回复 使用道具 举报
hello--world
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马