🌝Coding/🌟JAVA
[JAVA] HashMap
뿌야._.
2021. 12. 8. 02:47
//import
import java.util.HashMap;
// 선언 및 초기화
HashMap<Integer,Integer> map = new HashMap<>();
// 추가
map.put(6,1);
map.put(5,2);
map.put(4,3);
// value 가져오기
map.get(5);
// key 삭제
map.remove(5);