JAVA 프로그래밍/Do it! 자바 프로그래밍 입문
classpart/StudentTest.java
불두화
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( ));
}
}