我研究过 java 是通过引用传递的,但是当我执行以下代码时,字符串没有在 main 方法中交换,为什么?
static void swap(String s1, String s2){
String temp = s1;
s1=s2;
s2=temp;
}
public static void main(String[] args) {
String s1 = "Hello", s2 = "world";
swap(s1, s2);
System.out.println(s1 + s2);
}