1: public final class U493 extends Applet { 2: // price 필드가 final이 아니기 때문에, 외부에서 price를 수정할 수 있다. 3: public static float price = 500; 4: 5: public float getTotal(int count) { 6: return price * count; 7: } 8: ……