show方法没有返回值,就是字符串做了连接之后就没了,没有新连接的字符串“WabcxyzQ”,- class stringdemo_0326
- {
- public static void main(String[] args)
- {
- String s1 = "abc";
- String s2 = "xyz";
- String s3 = show(s1,s2);
- System.out.println(s1+"------"+s2+"-------"+s3);
- }
-
- public static String show(String s1,String s2)
- {
- s1 = s2+s1+"Q";
- s2 = "W"+s1;
- return s2;
- }
-
- //为什么会输出abc------xyz
- }
复制代码
这样输出的是你希望的结果么? |