▶ 제어자 (modifier) - 클래스와 클래스의 멤버 (멤버 변수, 메서드)에 부가적인 의미 부여 제어자 종류 접근 제어자 public, protected, (default), private 그 외 static, final, abstract, native, transient, synchronized, volatile, strctfp - 하나의 대상에 여러 제어자를 같이 사용가능 (접근 제어자는 하나만) public class ModifierTest { public static final int WIDTH = 200; public static void main(String[] args){ System.out.println("Width =" + WIDTH); } } ▶ static - 클래스의, 공통적인..