ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 네이밍 컨벤션
    카테고리 없음 2019. 8. 4. 10:10

    카멜 케이스(camelCase)

    • 단어가 합쳐진 부분마다 첫 글자를 대문자로 표기  
      • lower camel case
        • 예 : camelCase
        • 맨 앞글자를 소문자로 표기
      • upper camel case(=pascal case)
        • 예 : CamelCase
        • 맨 앞글자를 대문자로 표기

    파스칼 케이스(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

    출처
    https://en.wikipedia.org/wiki/Camel_case

    https://en.wikipedia.org/wiki/Hungarian_notation

    댓글

Designed by Tistory.