Map의 종류
arraylist
에서 문제 발생index
가 변한다.hash map
이 생겼다 HashMap<key_type, value_type> hashmap_name = new HashMap<();
Map<String, Integer> hashmap_name = new HashMap<();
hash_name.put("철수",20) // index :"철수"
hash_name.put("영희",10) // index :"영희"
hash_name.get(key_value) // value 출력
hash_name.get("영희") // 10