Menu



Manage

Cord > Study_JAVA 전체 다운로드
파일 목록
Study_JAVA > 7/StudentEX.java Lines 12 | 309 바이트
다운로드

                        package week7;

public class StudentEX {
	public static void main(String[] args) {
		Student st1 = new Student();
		System.out.println("st1 변수가 Student 객체를 참조함");
		
		Student st2 = new Student();
		System.out.println("st2 변수가 또 다른 Student 객체를 참조함");
	}
}