전형적인 불린 변수명을 사용 - done,error,found,success,ok참이나 거짓을 함축한 이름을 사용 - status -> error or statusOKsourceFile -> sourceFileAvailable, sourceFileFound긍정적인 이름을 사용 - notFound, notDone, notSuccessful 같은 경우 부정이 첨가된 경우 읽기 어려워짐접두사를 사용하여 그룹의 의미 전달 ex)Color_Red, Planet_Earth, Month_Jnnuary 클래스 내에 사용되는 경우에는 접두사를 생략할 수도 있다.Color.Color_Red -> Color.Red 용도에 따른 명명 규칙들 - 상수상수가 나타내는 숫자보다는 추상적 대상을 표현하도록 한다.-final int ..