본문 바로가기
기록/Java&Spring&Eclipse

[Java] 자바 Map 차이점

by 자임 2022. 10. 11.

1.

hashmap - null 허용
linkedhashmap - null 허용하지 않음
출처 : https://wooktae.tistory.com/38

 

2.
HashMap<String, Object> map = new HashMap<String, Object>();
Map<String, Object> map = new HashMap<String, Object>();

hashmap으로 객체 사용하면 hashmap밖에 못 쓰는데 map으로 hashmap 쓰면 map으로 수정되어도 코드 수정 안 해도 돼서 유지보수성이 뛰어나다고 함
출처 : https://juyoungit.tistory.com/587


+ ArrayList 안에 HashMap 넣기 https://m.blog.naver.com/ddakshe2/140176655437