Map은 key를 통해 value를 찾는다.
HashMap<String, String> map = new HashMap<>();
//1. 요소 추가
map.put("red", "빨강");
map.put("yellow", "노랑");
map.put("blue", "파랑");
//2. 요소 개수
System.out.println(map.size());
//3. 요소 읽기
System.out.println(map.get("yellow"));
System.out.println(map.get("green")); //모든 map 계열은 대부분 null 반환 , 에러 뜨지 않음
//4. 요소 수정
map.put("blue", "퍼렁");
System.out.println(map);
//5. 요소 삭제
map.remove("blue");
System.out.println(map);
//6. 검색
System.out.println(map.containsKey("red")); //true
System.out.println(map.containsValue("빨강")); //true
//7. 초기화
map.clear();
System.out.println(map);