put(K key,V value)
引數說明:public static void main(String[] args)throws InterruptedException{ Map map = new HashMap(); map.put("apple","新鮮的蘋果"); map.put("computer","設定優良的計算機"); map.put("book","堆積成山的圖書"); map.put("time",new Date()); int size = map.size(); System.out.println("Map集合的大小為:"+size); }執行結果為“Map 集合的大小為:4”。