기반 형식의 protected로 접근 지정한 멤버를 파생 형식에서 접근 public class Musician { int skill; static final int MAX_SKILL = 100; static final int MIN_SKILL = 0; public Musician(){ setSkill(MIN_SKILL); } protected void setSkill(int value) { if(value>MAX_SKILL){ value = MAX_SKILL; } if(value