java hashmap实例,关于java中的HashMap的实例操作
HashMap簡介:
1、以(鍵,值)對存儲數據。
2、不允許有重復的鍵,但允許有重復的值。
3、不同步(多個線程可以同時訪問)
相關視頻教程推薦:java在線學習
實例演示如下:
1、添加
HashMap hash_map = new HashMap();
hash_map.put( "名字" , "anny" );
hash_map.put( "性別" , "女" );
hash_map.put( "年齡" , "20" );
2、刪除
HashMap hash_map = new HashMap();
hash_map.remove( "名字" );
3、遍歷
一般性能:
HashMap hash_map = new HashMap();
hash_map.put( "名字" , "anny" );
hash_map.put( "性別" , "女" );
hash_map.put( "年齡" , "20" );
for(String key:hash_map.keySet())
{
System.out.println("Key: "+key+" Value: "+hash_map.get(key));
}
使用 Collection 類的 iterator() 方法來遍歷集合(性能好)
HashMap hash_map = new HashMap();
hash_map.put( "名字" , "anny" );
hash_map.put( "性別" , "女" );
hash_map.put( "年齡" , "20" );
Collection cl = hash_map.values();
Iterator itr = cl.iterator();
while (itr.hasNext()) {
System.out.println(itr.next());
}
本文來自java入門程序欄目,為大家介紹關于HashMap的一些實例操作,希望可以幫助到大家。
創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎總結
以上是生活随笔為你收集整理的java hashmap实例,关于java中的HashMap的实例操作的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 借呗可以提现到银行卡吗
- 下一篇: oracle+11g+rda,Oracl