Notice
Recent Posts
Recent Comments
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Angular2
- Java
- Clean Code
- Gradle
- 인텔리J
- intellij
- DDD
- elastic search
- nginx
- spark
- Storm
- hadoop
- hibernate
- Spring Boot
- 제주
- SBT
- Hbase
- Spring XD
- Spring
- scala
- 도메인주도설계
- 엘라스틱서치
- 스프링 배치
- docker
- apache storm
- Linux
- design pattern
- elasticsearch
- Spring Batch
- hdfs
Archives
- Today
- Total
목록매직넘버 (1)
욱'S 노트
Replace Magic Number with Symbolic Constants - 매직넘버 심볼릭 상수 치환
문제점 매직넘버를 사용합니다. 매직넘버란 무엇인가 살펴보자면 아래와 같은 코드를 사용하고 있습니다. if (100 < input.length()) 이렇게 되었을 경우 문제점은 1. 의미를 이해하기 어렵습니다.2. 복수의 장소에서 사용된다면 변경하기 힘듭니다. 해결책 상수를 사용하면 됩니다. public static final int MAX_INPUT_LENGTH = 100; 연습문제 문제public class Robot { private final String name; public Robot(String name) { this.name = name; } public void order(int command) { if (command == 0) { System.out.println(name + " wal..
Methdology/Refactoring
2015. 6. 8. 18:17