학생 클래스를 정의 하고 이를 사용해 보자
- 학생 클래스의 속성을 멤버 변수로 선언하고 메서드를 구현한다.
package ch04;
public class Student {
public int studentID;
public String studentName;
public String address;
public void showStudentInfo() {
System.out.println(studentName + "," + address);
}
public String getStudentName() {
return studentName;
}
public void setStudentNaem(String name) {
studentName = name;
}
}
- 학생 클래스를 생성하여 생성된 객체(인스턴스)에 각각 다른 이름과 주소를 대입한다.
package ch04;
public class StudentTest {
public static void main(String[] args) {
Student studentLee = new Student(); // 생성자
studentLee.studentName = "이순신";
studentLee.address = "서울";
studentLee.showStudentInfo();
Student studentKim = new Student();
studentKim.studentName = "김유신";
studentKim.address = "경주";
studentKim.showStudentInfo();
System.out.println(studentLee);
System.out.println(studentKim);
}
}
2023 KAKAO Tech Campus_BackEnd 필수 과정
Java 1주차 강의 정리 내용입니다.
'개발 > Java' 카테고리의 다른 글
[1주차] Java 중급 - 생성자에 대해 알아봅시다(constructor) (0) | 2023.06.24 |
---|---|
[1주차] Java 중급 - 인스턴스 생성과 힙 메모리 (0) | 2023.06.24 |
[1주차] Java 중급 - 함수와 메서드 (0) | 2023.06.24 |
[1주차] Java 중급 - 생활 속에서 객체 찾아 클래스로 구현해보기 (0) | 2023.06.24 |
[1주차] Java 중급 - 객체와 객체지향 프로그래밍 (0) | 2023.06.24 |