对象与引用变量
堆上的生与死
public class TestClass {
public static void main(String[] args) {
Student student1 = new Student();
student1.setAge(10);
System.out.println(student1.getAge());//10
Student student2 = new Student();
student2=student1;
student2.setAge(12);
System.out.println(student2.getAge());//12
System.out.println(student1.getAge());//12
}
}
匿名对象,是指没有明确引用的声明,即没有任何一个具体的对象名称引用它
System.out.println(new Student().eat());
new Student()声明的对象并没有赋给任何一个Student类对象的引用,此对象只使用了一次,之后被Java垃圾收集器回收
引用传递称为传地址,在方法调用时,传递的参数是按引用传递,传递的是引用的地址,变量对应的内存空间的地址。