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