static : 정적 동적(dynamic) stack heap static system opublic class MainClass { public static void main(String[] args) {// MyClass cls = new MyClass();// cls.number = 123;// cls.method();// MyClass.static_number = 111; //객체를 생성하지 않아도 변수를 생설할 수 있는 것이 static 변수 //멤버변수, static 넘버는 따로 초기화하지 않아도 0이다./* MyClass cls = new MyClass(); ..