정적 멤버 필드에 fianl 키워드를 명시하여 상수를 지정한 예 public class Unit { static final int MAX_HP = 100; static final int MIN_HP = 0; int hp; public Unit(){ hp = MIN_HP; } public void play(int pcnt){ setHp(hp+pcnt); } private void setHp(int value) { if(value>MAX_HP){ value = MAX_HP; } if(value