Static은 객체를 생성하지 않아도 메소드를 호출할 수 있는 마법의 메소드. ------------------------------------------------------------------------ ex) public class ReferenceStatic { public static void main(String args[]) { ReferenceStatic.staticMethod(); //객체 생성 없이 바로 메소드 호출 } public static void staticMethod() { //static 메소드 선언 System.out.println("This is a staticMethod."); } } ----------------------------------------------..