About 15,600 results
Open links in new tab
  1. HashSet: When Uniqueness Is the Entire Point - LinkedIn

    1 day ago · HashSet<T> answers the "is this in the collection?" question in O (1) average time—constant regardless of how many elements the set contains.

  2. HashSet (Java Platform SE 8 ) - Oracle

    HashSet public HashSet(Collection <? extends E> c) Constructs a new set containing the elements in the specified collection. The HashMap is created with default load factor (0.75) and an initial capacity …

  3. HashSet in Java - GeeksforGeeks

    Apr 24, 2026 · HashSet in Java implements the Set interface of the Collections Framework. It is used to store the unique elements, and it doesn't maintain any specific order of elements. HashSet does not …

  4. A Guide to HashSet in Java - Baeldung

    Jul 3, 2025 · HashSet is one of the fundamental data structures in the Java Collections API. Let’s recall the most important aspects of this implementation: It stores unique elements and permits nulls It’s …

  5. HashSet (Java SE 17 & JDK 17) - Oracle

    Set s = Collections.synchronizedSet(new HashSet(...)); The iterators returned by this class's iterator method are fail-fast: if the set is modified at any time after the iterator is created, in any way except …

  6. Java HashSet - W3Schools

    Java HashSet A HashSet is a collection of elements where every element is unique. It is part of the java.util package and implements the Set interface.

  7. HashSet (Java SE 11 & JDK 11 ) - Oracle

    Throws: HashSet public HashSet (int initialCapacity) Constructs a new, empty set; the backing HashMap instance has the specified initial capacity and default load factor (0.75). Parameters: initialCapacity - …

  8. HashSet<T> Class (System.Collections.Generic) | Microsoft Learn

    The following example demonstrates how to merge two disparate sets. This example creates two HashSet<T> objects and populates them with even and odd numbers, respectively. A third …

  9. Java HashSet - Programiz

    Why HashSet? In Java, HashSet is commonly used if we have to access elements randomly. It is because elements in a hash table are accessed using hash codes. The hashcode of an element is a …

  10. HashSet (Java SE 26 & JDK 26) - docs.oracle.com

    HashSet public HashSet(int initialCapacity, float loadFactor) Constructs a new, empty set; the backing HashMap instance has the specified initial capacity and the specified load factor. API Note: To create …