개발 공부
static 유무 본문
클래스
static 붙어있는 필드를 클래스 필드
붙지 않은 필드를 인스턴스 필드라고 한다.
메소드
인스턴스 메소드
public void printName(){
System.out.println("내 이름은 " + name);
}
클래스 메소드
public static void printCount(){
System.out.println("count : " + count);
}