일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 항해플러스백엔드
- Your session has been terminated
- disabled
- AWS Certified Cloud Practitioner
- Wordpress
- AWS시험
- readony
- 변수의타입
- cafe24
- ARI
- 항해플러스후기
- SSL
- saltkey
- 보안인증서
- AWS
- java
- 항해솔직후기
- 변수
- 형변환
- SQL개발자
- sqld
- 남궁성
- 항해플러스
- ARIadminer
- Java의정석
- 항해99
- 자바의정석
- Foundational
Archives
- Today
- Total
WorkaHolic
코딩스타일 본문
반응형
카멜 표기법 (camelCase) || 단봉낙타 표기법 (lowerCamelCase)
단어들이 소문자로 시작, 대문자로 이어가는 스타일
(Java 위주 || Function)
ex. helloWorld
파스칼 표기법 (PascalCase) || 쌍봉낙타 표기법 (UpperCamelCase)
단어들이 대문자로만 이어가는 스타일
(Function || Class)
ex. HelloWorld
스네이크 표기법 (snake_case) || 팟홀 표기법 (pothole_case)
단어들 사이에 언더바(Underbar, Underscore, _ )로 이어가는 스타일
(DB Table || Column, Variable, Function, DataType, Namespace 등)
ex. hello_world
케밥 표기법 (Kebab Case)
단어들 사이에 하이픈(Hyphen, Dash, -)으로 이어가는 스타일
(HTML Tag의 id나 class 속성)
ex. hello-world
헝가리안 표기법 (Hungarian Notation)
접두어로만 줄여쓰는 스타일
(권장하지 않음)
ex. h , hw
반응형
'Programming' 카테고리의 다른 글
개인공부방 (0) | 2018.09.06 |
---|