Key와 Value의 쌍으로 이루어진 데이터
인자로 key와 value를 받는다.
Map<String, Integer> fruits = new HashMap<>();
fruits.put("apple", 1);
fruits.put("banana", 2);
fruits.put("kiwi", 3);
fruits.put(null, 4);
fruits.put("kiwi", 5);
System.out.println("fruits: " + fruits);
// fruits: {banana=2, null=4, apple=1, kiwi=5}
인자로 전달된 Map에 대한 데이터를 모두 저장
두개의 Map을 합치는 예제
Map<String, Integer> fruits = new HashMap<>();
fruits.put("apple", 1);
fruits.put("banana", 2);
fruits.put("kiwi", 3);
Map<String, Integer> food = new HashMap<>();
food.put("coffee", 1);
food.put("hamburger", 2);
food.put("sandwich", 3);
food.putAll(fruits);
System.out.println("food: " + food);
// food: {banana=2, apple=1, kiwi=3, coffee=1, sandwich=3, hamburger=2}
인자로 전달된 key에 해당하는 value를 리턴
Map<String, Integer> fruits = new HashMap<>();
fruits.put("apple", 1);
fruits.put("banana", 2);
fruits.put("kiwi", 3);
System.out.println("get(apple): " + fruits.get("apple"));
System.out.println("get(kiwi): " + fruits.get("kiwi"));
System.out.println("get(undefined): " + fruits.get("undefined"));
// get(apple): 1
// get(kiwi): 3
// get(undefined): null
인자로 전달된 key에 해당하는 데이터 삭제
삭제가 되면 value가 리턴된다, 존재하지 않으면 null이 리턴
Map<String, Integer> fruits = new HashMap<>();
fruits.put("apple", 1);
fruits.put("banana", 2);
fruits.put("kiwi", 3);
System.out.println("remove(apple): " + fruits.remove("apple"));
System.out.println("remove(kiwi): " + fruits.remove("kiwi"));
System.out.println("remove(undefined): " + fruits.remove("undefined"));
System.out.println("fruits: " + fruits);
// remove(apple): 1
// remove(kiwi): 3
// remove(undefined): null
// fruits: {banana=2}
fruits.put("apple", 1);
fruits.put("banana", 2);
fruits.put("kiwi", 3);
System.out.println("fruits: " + fruits);
System.out.println("is empty? " + fruits.isEmpty());
fruits.clear();
System.out.println("fruits: " + fruits);
System.out.println("is empty? " + fruits.isEmpty());
// fruits: {banana=2, apple=1, kiwi=3}
// is empty? false
// fruits: {}
// is empty? true
public Set<K> keySet()
public Collection<V> values()
Map<String, Integer> fruits = new HashMap<>();
fruits.put("apple", 1);
fruits.put("banana", 2);
fruits.put("kiwi", 3);
System.out.println("keySet(): " + fruits.keySet());
System.out.println("values(): " + fruits.values());
Set<String> keys = fruits.keySet();
for (String key : keys) {
System.out.println("key: " + key);
}
Collection<Integer> values = fruits.values();
for (Integer value : values) {
System.out.println("value: " + value);
}
// keySet(): [banana, apple, kiwi]
// values(): [2, 1, 3]
// key: banana
// key: apple
// key: kiwi
// value: 2
// value: 1
// value: 3
또 다른 예시)
for (String key : fruits.keySet()) {
System.out.println(key + " " + fruits.get(key));
}
List<Integer> list = new ArrayList<>(fruits.values());
for (int l : list) {
System.out.println(l);
}
Map<String, Integer> fruits = new HashMap<>();
fruits.put("apple", 1);
fruits.put("banana", 2);
fruits.put("kiwi", 3);
System.out.println("containsKey(apple): " + fruits.containsKey("apple"));
System.out.println("containsKey(undefined): " + fruits.containsKey("undefined"));
System.out.println("containsValue(1): " + fruits.containsValue(1));
System.out.println("containsValue(0): " + fruits.containsValue(0));
// containsKey(apple): true
// containsKey(undefined): false
// containsValue(1): true
// containsValue(0): false
replace()는 인자로 전달된 key의 value를 인자로 전달된 value로 교체, 교체되어 삭제되는 value는 리턴
존재하지 않는 key가 인자로 전달되면 null이 리턴
Map<String, Integer> fruits = new HashMap<>();
fruits.put("apple", 1);
fruits.put("banana", 2);
fruits.put("kiwi", 3);
System.out.println("fruits: " + fruits);
System.out.println("replace(apple, 10): " + fruits.replace("apple", 10));
System.out.println("replace(undefined, 10): " + fruits.replace("undefined", 10));
System.out.println("fruits: " + fruits);
// fruits: {banana=2, apple=1, kiwi=3}
// replace(apple, 10): 1
// replace(undefined, 10): null
// fruits: {banana=2, apple=10, kiwi=3}
인자와 리턴타입이 다른 replace(key, oldValue, newValue) 메소드도 있다.
저장된 key의 value가 oldValue와 동일할 때만 newValue로 변경해주고 true를 리턴하고 동일하지 않을 때 false를 리턴
Map<String, Integer> fruits = new HashMap<>();
fruits.put("apple", 1);
fruits.put("banana", 2);
fruits.put("kiwi", 3);
System.out.println("fruits: " + fruits);
System.out.println("replace(apple, 1, 10): " + fruits.replace("apple", 1, 10));
System.out.println("replace(banana, 1, 10): " + fruits.replace("banana", 1, 20));
System.out.println("fruits: " + fruits);
// fruits: {banana=2, apple=1, kiwi=3}
// replace(apple, 1, 10): true
// replace(banana, 1, 10): false
// fruits: {banana=2, apple=10, kiwi=3}
getOrDefault(key, default)는 key에 대한 value를 리턴하며 key가 존재하지 않으면 default를 리턴
이것을 사용하면 NullPointerException 발생하지 않음
Map<String, Integer> map = new HashMap<>();
map.put("apple", 1);
map.put("melon", 2);
map.put("kiwi", 3);
map.put("melon", map.getOrDefault("melon", 0) + 10);
map.put("banana", map.getOrDefault("banana", 0) + 10);
System.out.println("Result: " + map);
// Result: {banana=10, apple=1, kiwi=3, melon=12}
key 기준 정렬과 value 기준 정렬이 있다.
위 포스팅 참고
// 밸류로 키 조회하기
for (String key : fruits.keySet()) {
//System.out.println(key + " " + fruits.get(key));
if (fruits.get(key) == 2) {
System.out.println("밸류로 키 조회: " + key);
}
}
for (Map.Entry<String, Integer> f : fruits.entrySet()) {
//System.out.println(f.getKey() + " " + f.getValue());
if (f.getValue() == 2) {
System.out.println("밸류로 키 조회: " + f.getKey());
}
}
(참고)
https://codechacha.com/ko/java-map-hashmap/
https://codechacha.com/ko/java-sort-map/ <-다른 정렬 방법