컴퓨터공학 💻 도서관📚

Part2. 2-4 객체의 속성은 멤버 변수로, 객체의 기능은 메서드로 구현한다 본문

✅🌲강의 복습 노트/패캠 JavaSpring 강의,코드 복습

Part2. 2-4 객체의 속성은 멤버 변수로, 객체의 기능은 메서드로 구현한다

들판속초록풀 2024. 2. 27. 19:58
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 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);
	}

}
Comments