About 44,000 results
Open links in new tab
  1. 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 …

  2. 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 …

  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. Hash table - Wikipedia

    A small phone book as a hash table In computer science, a hash table is a data structure that implements an associative array, also …

  5. What is a hash map in programming and where can it be used

    Apr 7, 2010 · Hashmap is used for storing data in key value pairs. We can use a hashmap for storing objects in a application and use …

  6. std::unordered_map - cppreference.com

    std::unordered_map is an associative container that contains key-value pairs with unique keys. Search, insertion, and removal of …

  7. 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 …

  8. 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 …

  9. 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 …

  10. Java - The HashMap Class - Online Tutorials Library

    The HashMap class uses a hashtable to implement the Map interface. This allows the execution time of basic operations, such as …