static final 은 절대 바꿀수 없는것을 의미한다 ( ex : 주민등록번호 ) static 영역은 클래스의 원본으로 주소가 이동되지 않는다. final 은 프로그램이 종료 될 때까지 바꿀수 없다. final 은 read only의 개념 - Main Class package chap04.exam08.sBlock; public class Main { public static void main(String[] args) { System.out.println("Monitor 속성 호출"); //company, model, price System.out.println(Monitor.conpany); System.out.println(Monit..