4월 12일 내용정리-3
1.static 은 클래스가 메모리영역에 읽혀질때 같이 읽혀진다.
static 메모리영역에 객체가 만들어 지기전에 미리 만들어져 있어서 필요에 따라 끌어다가 쓸수 있다.
왜냐하면 메모리영역은 누구나 접근할수 있고, 끌어다 쓸수 있는 영역이므로.
static메모리영역 생성 객체는 힙영역에 생성
인스턴스변수나 인스턴스메서드는 힙 영역에 객체가 생성이 되었을때 사용가능하다.
선언 클래스
package study_0412;
public class Student03 {
public static int hakNum;
private int studentID;
private String name;
private int score;
//생성자 선언
public Student03() {
hakNum++;//객체가 만들어질때마다 1씩증가
//객체가 만들어지면서 생성자 호출하기 때문에 증가가 가능
studentID=hakNum; //private은 자신의 클래스에서 접근이 가능하다.
}
public int getStudentID() {
return studentID;
}
public void setStudentID(int studentID) {
this.studentID = studentID;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getScore() {
return score;
}
public void setScore(int score) {
this.score = score;
}
}
실행 클래스
package study_0412;
public class Student03_Test {
public static void main(String[] args) {
Student03 hong =new Student03();
Student03 kim =new Student03();
System.out.println(hong.getStudentID());
hong.setName("홍길동");
System.out.println(hong.getName());
System.out.println(kim.getStudentID());
hong.setName("김자바");
System.out.println(kim.getName());
}
}