日期:2014-05-20 浏览次数:20885 次
//函数fun
void fun(Foo foo){
...
}
//传递参数foo给函数fun
fun(foo);
fun(&foo);
import java.util.ArrayList;
import java.util.List;
/**
* 结论:在JAVA中
* 赋值或传递基本类型时,是通过复制基本类型的值来实现的;
* 赋值或传递对象时,是通过传递引用(指针)来实现的。
*/
public class PassParameter {
public int count = 0;
public String content = "Hello world";
public PassParameter pp;
public static void main(String[] args) {
PassParameter p = new PassParameter();
int i1 = 0;
int i2 = i1;
Integer integer = 0;
String str = "Hello world";
List<Integer> intListA = new ArrayList<Integer>();
List<Integer> intListB = new ArrayList<Integer>();
List<String> strListA = new ArrayList<String>();
List<String> strListB = strListA;
/////////////////////////////////////////////////////////
// 基本类型是通过复制值传递的
System.out.println("Before: i = " + i1);
p.addInt(i1);
System.out.println("After: i = " + i1);
// 对象是通过传递引用(指针)传递的
System.out.println("Before: str = " + str);
p.appendString(str);
System.out.println("After: str = " + str);
// 对象是通过传递引用(指针)传递的
System.out.println("Before: Integer = " + integer);
p.addInteger(integer);
System.out.println("After: Integer = " + integer);
// 成员变量基本类型与普通基本类型无异
System.out.println("Before: count = " + p.count);
p.addInt(p.count);
System.out.println("After: count = " + p.count);
// 成员String类型变量与普通String类型变量无异
System.out.println("Before: content = " + p.content);
p.appendString(p.content);
System.out.println("After: content = " + p.content);
// 对象是通过传递引用(指针)传递的
p.pp = new PassParameter();
System.out.println("Before: Class = " + p.pp.count);
p.changeClass(p.pp);
System.out.println("After: Class = " + p.pp.count);
// 容器(对象)是通过传递引用(指针)传递的
System.out.println("Before: List size = " + intListA.size());
p.addInteger(intListA);
System.out.println("After: List size = " + intListA.size());
intListB = intListA;