classpart/StudentTest2.java 참조 변수는 힙 메모리에 생성된 인스턴스를 가리킵니다. 그러면 참조 변수에 실제로 어떤 내용이 들어 있는지 출력해보겠습니다. package classpart; public class StudentTest2 { public static void main(String[] args) { Student student1 = new Student( ); student1.studentName = "안연수"; Student student2 = new Student( ); student2.studentName = "안승연"; System.out.println(student1); System.out.println(student2); //참조변수 값 출력 } } 힙 메모리에 생성된 인스턴스의 메모리 주소는 참조 변수에 저장.. JAVA 프로그래밍/Do it! 자바 프로그래밍 입문 4년 전