1. 카멜 표기법(Camel Notation)

두 개 이상의 단어로 이루어진 변수 이름에서 첫 단어는 소문자로 시작하고, 나머지 단어는 모두 대문자로 시작하는 방식.


getPrice, getChange



2. 헝가리언 표기법(Hungarian Notation)

변수 명에 변수의 타입을 접미어를 붙여 명시하는 방식


int price -> nPrice

String customer -> sCustomer



3. 파스칼 표기법(Pascal Notation)

모든 단어의 시작을 대문자로 표기하는 방법


GetPrice, GetChange



4. 언더스코어 표기법(Underscore Notation)

각 단어를 구분하기 위해 언더스코어를 사용


get_price, get_change, first_customer


'프로그래밍 용어' 카테고리의 다른 글

window.location document.location 차이점  (0) 2017.05.12
414 request 오류  (0) 2016.08.08
요다 조건문 / Yoda Conditions  (0) 2016.08.02