불두화 2021. 5. 13. 13:43

이전까지 했던 책의 예제들 업로드합니다. 

감사합니다.

package classpart;

public class StudentTest {

	public static void main(String[] args) {
		Student studentAhn = new Student( );
		studentAhn.studentName = "안승연";
		
		System.out.println(studentAhn.studentName);
		System.out.println(studentAhn.getStudentName( ));

	}

}