Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 명령어공부
- 클린코드
- 시스템 파악 정리
- 나선형 모형
- avax.net.ssl.SSLHandshakeException:
- 프로토타입 모형
- was버그
- 폭포수 모형
- 스크럼기법
- Law of Demeter
- 커맨드공부
- springboot
- 디미터 법칙
- Bandit Level 6
- mysql 튜닝
- 시스템 파악
- vue
- CSS
- 변수명 짓는법
- plsql
- table scan
- was SQLRecoverableException
- Bandit Level 5
- Bandit Level 6 → Level 7
- 에자일 모형
- 인증서만료에러
- SQLRecoverableException
- pl/sql
- java.sql.SQLRecoverableException
- OpenAPI
Archives
- Today
- Total
목록변수명 짓는법 (1)
개발햄비
[Clean code] 변수명
1. 구분하기 어려운 변수명은 사용 금지 private List customer; private List customerInfo; private List accuntData; private List accunt; private String theMessage; private String message; 위 3개의 차이를 생각해보자. 무슨 차이인지 구분하기 어렵다. 코드를 읽는 사람이 차이를 알기 쉽도록 하여라 . 2. 발음하기 쉬운 변수명 사용하기. class DtaRcrd{ private Date nwdte; private Date genytmsp; } class Customer{ private Date generationTimestamp; private Date modicationTimestamp; ..
개발/Clean Code
2021. 5. 2. 18:48