230315 Stringify 예제 연습

허크·2023년 3월 15일
0
  • 람다식 사용한 처리
if(data instanceOf HashMap) {
	HashMap<Object, Object> map = (HashMap<Object, Obbject>) data;
    HashMap<Object, Object> result = new LinkedHashMap<>();
    
    map.forEach((key, value) -> {
    	String curKey = stringify(key);
        String curValue = stringify(value);
    
    result.put(curKey, curValue)
    });
}

  • 에러 핸들링
    • HashMap 사용시 순서가 보장되지 않음 <- LinkedHashMap 사용

  • git add . <- 가능한 절대 쓰지말것
    • 업로드하면 안되는 중요 파일들도 같이 올라갈 수 있기 때문
    • git add <경로> 로 스테이징하는 버릇 들이기
profile
codestates seb 44th // 다크모드로 보는걸 추천드립니다

0개의 댓글