변수종류 자동초기화 초기화 시점 메모리영역 소멸시점 스태틱변수 o 클래스로드 시 메서드 클래스언로드시 인스턴스변수 o 객체 생성 시 힙 객체소멸시 매개변수/지역변수 x 스택 메서드종료시 class A{ static int si; // 스태틱 변수 int i; //인스턴스 변수 //스태틱 메서드 static void sm() { //인스턴스변수, this 사용불가 //인스턴스 변수 사용가능 System.out.println(si); } //인스턴스 메서드 void m(){ System.out.println(this.i); //인스턴스 변수 사용 가능 } } public class StaticTest { public static void main(String[] args) { System.out.printl..