728x90 코드1 [Java] 2.04. 객체의 속성은 멤버 변수로, 객체의 기능은 메서드로 구현한다 학생 클래스를 정의하고 이를 사용해보자 학생 클래스의 속성을 멤버 변수로 선언하고 메서드를 구현한다 public calss Student { public int studentID; public String studentName; public String address; public void showStudentInfo() { System.out.println(studentName + "," + addresss); } public String getStudentName() { return studentName; } } 학생 클래스를 생성하여 생성된 객체(인스턴스)에 각각 다른 이름과 주소를 대입한다. public class StudentTest { public static void main(String[].. 2021. 8. 12. 이전 1 다음 728x90