About 40,500 results
Open links in new tab
  1. HashMap (Java Platform SE 8 ) - Oracle

    An instance of HashMap has two parameters that affect its performance: initial capacity and load factor. The capacity is the number …

  2. HashMap in Java - GeeksforGeeks

    May 13, 2026 · A HashMap is a part of Java’s Collection Framework and implements the Map interface. It stores elements in key …

  3. Java HashMap - W3Schools

    Java HashMap A HashMap stores items in key/value pairs, where each key maps to a specific value. It is part of the java.util …

  4. A Guide to Java HashMap - Baeldung

    Jan 16, 2025 · 5. How to Avoid Casting HashMap<String, Object> Value The java.util.HashMap<K,V> class is a hash table based …

  5. What is a HashMap in Java? - Educative

    Mar 10, 2026 · A Java HashMap is a hash-table-based data structure that stores unique key-value pairs, offering average O (1) time …

  6. HashMap Internal Working Explained with Examples

    Jun 4, 2026 · HashMap remains one of Java's most important data structures. HashMap may appear simple from the outside, but …

  7. Complete Guide to Java HashMap (with Examples) - HowToDoInJava

    Dec 5, 2024 · The HashMap, part of the Java Collections framework, is used to store key-value pairs for quick and efficient storage …

  8. A Guide to HashMap in Java With Examples

    Jan 18, 2024 · HashMap is a popular data structure in Java that uses the Map interface and a hash table to provide efficient access …

  9. HashMap in Java: A Detailed Explanation - ScholarHat

    Sep 3, 2025 · HashMap in Java is a part of the Java Collections Framework that stores data in key-value pairs. It implements the …

  10. Java HashMap (With Examples) - Programiz

    The HashMap class provides the functionality of the hash table data structure in Java. In this tutorial, we will learn about the Java …