💡 학습 목표메소드와 함수에 차이점을 이해 한다. 변수의 위치에 따라 지역변수와 멤버 변수로 부를 수 있다. 💡 객체의 속성은 멤버 변수로 객체의 기능은 메서드로 구현한다. package ch07;//학생 클래스를 설계하는 코드 측public class student { int studentId; String studentName; String studentAddress; //행위 public void study() { System.out.println("---------------------"); System.out.println(studentName + "가 공부를 합니다"); } public void breakTime() { ..