HashMap是AbstractMap類的子類,用於儲存鍵值對。每個鍵都映射到映射中的單一值,並且鍵是唯一的。這意味著我們只能在映射中插入一次鍵,並且不允許重複鍵,但該值可以映射到多個鍵。我們可以使用HashMap類別的put()方法新增元素,並使用Iterator介面迭代元素。
public V put(K key, V value)
import java.util.*; import java.util.Map.*; public class HashMapTest { public static void main(String[] args) { HashMap map = new HashMap(); <strong> </strong>// adding the elements to hashmap using put() method map.put("1", "Adithya"); map.put("2", "Jai"); map.put("3", "Chaitanya"); map.put("4", "Krishna"); map.put("5", "Ramesh"); if(!map.isEmpty()) { Iterator it = map.entrySet().iterator(); while(it.hasNext()) { Map.Entry obj = (Entry)it.next(); System.out.println(obj.getValue()); } } } }
Adithya Jai Chaitanya Krishna Ramesh
以上是如何在Java中列印HashMap的元素?的詳細內容。更多資訊請關注PHP中文網其他相關文章!