컴퓨터공학 💻 도서관📚
Part2. 2-4 객체의 속성은 멤버 변수로, 객체의 기능은 메서드로 구현한다 본문
✅🌲강의 복습 노트/패캠 JavaSpring 강의,코드 복습
Part2. 2-4 객체의 속성은 멤버 변수로, 객체의 기능은 메서드로 구현한다
들판속초록풀 2024. 2. 27. 19:58public 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 class StudentTest {
public static void main(String[] args) {
Student studentLee = new Student(); //클래스(객체)가 자료형이 된다.
studentLee.studentName = "이순신"; //객체 이oo 의 속성을 대입해주는 코드
studentLee.address = "서울";
studentLee.showStudentInfo(); //클라이언트가 Student 클래스의 메서드 사용
Student studentKim = new Student();
studentKim.studentName = "김유신";
studentKim.address = "경주";
studentKim.showStudentInfo(); //클라이언트가 Student 클래스의 메서드 사용
System.out.println(studentLee);
System.out.println(studentKim);
}
}
'✅🌲강의 복습 노트 > 패캠 JavaSpring 강의,코드 복습' 카테고리의 다른 글
Part2. 2-6 생성자 (with. 파인만 기법 + 문제출제) (0) | 2024.02.28 |
---|---|
Part2. 2-5 인스턴스 생성과 힙 메모리 (with. 파인만 기법 + 문제출제) (1) | 2024.02.27 |
Part2. 2-3 함수와 메서드 / With. 파인만 기법 (0) | 2024.02.27 |
Part2. 2-2 생활 속에서 객체 찾아 클래스로 구현하기 (0) | 2024.02.27 |
Part2. 2-1 객체와 OOP (1) | 2024.02.27 |
Comments