overriding1 자바(JAVA) - 생성자(constructor) 생성자(contructor) 인스턴스를 초기화할 때의 명령어 집합 생성자의 이름 = 그 클래스의 이름 생성자는 메소드X, 상속X, 리턴값X public class Student { int studentID; String studentName; int grade; String address; public String getStudentName() { return studentName; } } 위와같은 클래스를 생성했을때 아래 코드와 같이 인스턴스를 생성할 수 있다. Student studentA = new Student(); 클래스 내에 따로 생성자를 만들지 않았지만 Student()라는 생성자를 통해 인스턴스를 생성하였다 클래스 내에 따로 생성자를 만들지 않으면 JAVA Compiler가 디폴트 생성자를.. 2022. 3. 9. 이전 1 다음