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 중국어 웹사이트의 기타 관련 기사를 참조하세요!