public class Example {
private String str = new String("good");
private char[] ch = {'a', 'b', 'c'};
public static void main(String[] args) {
Example example = new Example();
example.change(example.str, example.ch);
System.out.print(example.str + " and ");
System.out.print(example.ch);
}
public void change(String str, char ch[]) {
str = "test ok";
ch[0] = 'g';
}
}
运行结果
good and gbc
其实都是引用传递,只是因为String是个特殊的final类,所以每次对String的更改都会重新创建内存地址并存储(也可能是在字符串常量池中创建内存地址并存入对应的字符串内容),但是因为这里String是作为参数传递的,在方法体内会产生新的字符串而不会对方法体外的字符串产生影响