-
카멜 케이스(camelCase)
- 단어가 합쳐진 부분마다 첫 글자를 대문자로 표기
- lower camel case
- 예 : camelCase
- 맨 앞글자를 소문자로 표기
- upper camel case(=pascal case)
- 예 : CamelCase
- 맨 앞글자를 대문자로 표기
- lower camel case
파스칼 케이스(PascalCase)
- 카멜 케이스와 동일하며 첫 단어를 대문자로 시작
- 예 : PascalCase
스네이크 케이스(snake_case)
- 단어가 합쳐진 부분마다 언더라인 추가
- 예 : snake_case
케밥 케이스(kabab-case)
- 단어가 합쳐진 부분마다 하이픈 추가
- 예 : kebab-case
헝가리언 표기법(hungarian notation)
- 접두어를 사용하는 방식
- 접두어 예시
bBusy : boolean chInitial : char cApples : count of items dwLightYears : double word (Systems) fBusy : flag (or float) nSize : integer (Systems) or count (Apps) iSize : integer (Systems) or index (Apps) fpPrice: floating-point
댓글
- 단어가 합쳐진 부분마다 첫 글자를 대문자로 표기