【深刻Java基礎】HashMap的基本用法

HashMap的基本用法 建立HashMap對象css HashMap<String,Integer> hashMap = new HashMap<>(); 添加鍵值對web 添加元素時,若是key已經存在,則返回舊value,並將新的value存到該key中;若是key不存在,則返回nullsql hashMap.put("aa",1); hashMap.put("bb",2);
相關文章
相關標籤/搜索