해결된 질문
작성
·
284
답변 1
1
안녕하세요?
네, 맞습니다. Student 클래스는 아래와 같이 작성이 되어 있으실 텐데요.
class Student {
public String name;
public String certification;
public Student(String name, String certification) {
this.name = name;
this.certification = certification;
}
}
new Student(값1, 값2); 를 하게 되면 새로운 객체를 만드는데, Student 클래스의 생성자에 값1(=name), 값2(=certification) 를 각각 전달해서 생성과 동시에 값을 설정할 수 있게 됩니다. 만약 위 예제와 같은 생성자가 준비되지 않은 경우라면 다음과 같이 코드를 분리해야 하는 불편함이 생깁니다.
// 1. 객체 생성
Student student1 = new Student();
// 2. 값 설정
student1.name = "유재석";
student1.certification = "파이썬";
// 3. 리스트에 추가
list.add(student1);
도움되셨길 바라겠습니다 😊
감사합니다.