以上是基本类型参数的传递方式,下来我们讨论一下对象作为参数传递的方式。
先看下边的示例代码:
1
2
3
4
5
6
7
8
9
10
11
12
public class ParameterTransfer {
public static void main(String[] args) {
String[] array = new String[] {"huixin"};
System.out.println("调用reset方法前array中的第0个元素的值是:" + array[0]);
reset(array);
System.out.println("调用reset方法后array中的第0个元素的值是:" + array[0]);
}
public static void reset(String[] param) {
param[0] = "hello, world!";
}
}