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:
- 인증서만료에러
- 에자일 모형
- 시스템 파악
- CSS
- springboot
- Bandit Level 6
- 스크럼기법
- Bandit Level 5
- mysql 튜닝
- Law of Demeter
- Bandit Level 6 → Level 7
- 나선형 모형
- 시스템 파악 정리
- 명령어공부
- 클린코드
- 디미터 법칙
- was SQLRecoverableException
- plsql
- 커맨드공부
- 폭포수 모형
- OpenAPI
- vue
- 변수명 짓는법
- 프로토타입 모형
- table scan
- SQLRecoverableException
- java.sql.SQLRecoverableException
- was버그
- pl/sql
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