HashMap map = new HashMap();
        map.put("ad",123.23);
        map.put("title", "2222"); 
        
        System.out.println(map.get("ad").getClass());
        System.out.println(map.get("title").getClass());=========================================HashMap 中放的都是Object  所以所有的基本类型都会autobox成响应的包装类