package test.main;import java.util.HashMap;public class MainClass07 { public static void main(String[] args) { /* * HashMap * * key type은 일반적으로 String type을 가장 많이 사용함 * value type은 담고 싶은 데이터의 type을 고려해서 저장하면 됨 * value type을 object로 지정하면 어떤 데이타타입이던지 다 담을 수 있음 * 순서가 없는 데이터를 다룰 때 사용하면 됨 * dto클래스 대신에 사용하기도 함 */ HashMap map=new HashMap(); map.put("num",1); map.put("name", "김구라");..