- class Test{
- public static void main(String[] args) {
- String s1 = "java";
- String s2 = "hello";
- method_1(s1,s2);
- System.out.println(s1+"...."+s2); //java....hello
-
- StringBuilder s11 = new StringBuilder("java");
- StringBuilder s22 = new StringBuilder("hello");
- method_2(s11,s22);
- System.out.println(s11+"-----"+s22); //javahello-----hello
- }
- public static void method_1(String s1,String s2){
- s1.replace('a','k');//将出现一个新的字符串,s1并没有变
- s1 = s2;//?????为什么赋值没成功??????
- }
- public static void method_2(StringBuilder s1,StringBuilder s2){
- s1.append(s2);
- s1 = s2;//?????为什么赋值没成功?????????
- }
- }
复制代码 |
|