src/java.base/share/classes/java/util/HashSet.java
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 57956 e0b8b019d2f5
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
55391
1afe0cb93482 8225339: Optimize HashMap.keySet()/HashMap.values()/HashSet toArray() methods
tvaleev
parents: 52427
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4110
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4110
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4110
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4110
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4110
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.util;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
20750
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
    28
import java.io.InvalidObjectException;
52427
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 49433
diff changeset
    29
import jdk.internal.access.SharedSecrets;
20750
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
    30
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
/**
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    32
 * This class implements the {@code Set} interface, backed by a hash table
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    33
 * (actually a {@code HashMap} instance).  It makes no guarantees as to the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * iteration order of the set; in particular, it does not guarantee that the
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    35
 * order will remain constant over time.  This class permits the {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * <p>This class offers constant time performance for the basic operations
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    39
 * ({@code add}, {@code remove}, {@code contains} and {@code size}),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * assuming the hash function disperses the elements properly among the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * buckets.  Iterating over this set requires time proportional to the sum of
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    42
 * the {@code HashSet} instance's size (the number of elements) plus the
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    43
 * "capacity" of the backing {@code HashMap} instance (the number of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * buckets).  Thus, it's very important not to set the initial capacity too
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * high (or the load factor too low) if iteration performance is important.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * <p><strong>Note that this implementation is not synchronized.</strong>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * If multiple threads access a hash set concurrently, and at least one of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * the threads modifies the set, it <i>must</i> be synchronized externally.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * This is typically accomplished by synchronizing on some object that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * naturally encapsulates the set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * If no such object exists, the set should be "wrapped" using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * {@link Collections#synchronizedSet Collections.synchronizedSet}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * method.  This is best done at creation time, to prevent accidental
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * unsynchronized access to the set:<pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *   Set s = Collections.synchronizedSet(new HashSet(...));</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    59
 * <p>The iterators returned by this class's {@code iterator} method are
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * <i>fail-fast</i>: if the set is modified at any time after the iterator is
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    61
 * created, in any way except through the iterator's own {@code remove}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * method, the Iterator throws a {@link ConcurrentModificationException}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * Thus, in the face of concurrent modification, the iterator fails quickly
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * and cleanly, rather than risking arbitrary, non-deterministic behavior at
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * an undetermined time in the future.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * <p>Note that the fail-fast behavior of an iterator cannot be guaranteed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * as it is, generally speaking, impossible to make any hard guarantees in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * presence of unsynchronized concurrent modification.  Fail-fast iterators
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
    70
 * throw {@code ConcurrentModificationException} on a best-effort basis.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * Therefore, it would be wrong to write a program that depended on this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * exception for its correctness: <i>the fail-fast behavior of iterators
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * should be used only to detect bugs.</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * <p>This class is a member of the
49433
b6671a111395 8199465: {@docRoot} references need to be updated to reflect new module/package structure
jjg
parents: 47423
diff changeset
    76
 * <a href="{@docRoot}/java.base/java/util/package-summary.html#CollectionsFramework">
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * Java Collections Framework</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * @param <E> the type of elements maintained by this set
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * @author  Josh Bloch
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * @author  Neal Gafter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * @see     Collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * @see     Set
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * @see     TreeSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * @see     HashMap
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
public class HashSet<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    extends AbstractSet<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    implements Set<E>, Cloneable, java.io.Serializable
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
{
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55391
diff changeset
    94
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    static final long serialVersionUID = -5024744406713321676L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    private transient HashMap<E,Object> map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    // Dummy value to associate with an Object in the backing Map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    private static final Object PRESENT = new Object();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    /**
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   103
     * Constructs a new, empty set; the backing {@code HashMap} instance has
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * default initial capacity (16) and load factor (0.75).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    public HashSet() {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 5506
diff changeset
   107
        map = new HashMap<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * Constructs a new set containing the elements in the specified
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   112
     * collection.  The {@code HashMap} is created with default load factor
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * (0.75) and an initial capacity sufficient to contain the elements in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * the specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * @param c the collection whose elements are to be placed into this set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * @throws NullPointerException if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    public HashSet(Collection<? extends E> c) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 5506
diff changeset
   120
        map = new HashMap<>(Math.max((int) (c.size()/.75f) + 1, 16));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        addAll(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    /**
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   125
     * Constructs a new, empty set; the backing {@code HashMap} instance has
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * the specified initial capacity and the specified load factor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * @param      initialCapacity   the initial capacity of the hash map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * @param      loadFactor        the load factor of the hash map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * @throws     IllegalArgumentException if the initial capacity is less
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     *             than zero, or if the load factor is nonpositive
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    public HashSet(int initialCapacity, float loadFactor) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 5506
diff changeset
   134
        map = new HashMap<>(initialCapacity, loadFactor);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    /**
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   138
     * Constructs a new, empty set; the backing {@code HashMap} instance has
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * the specified initial capacity and default load factor (0.75).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * @param      initialCapacity   the initial capacity of the hash table
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * @throws     IllegalArgumentException if the initial capacity is less
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     *             than zero
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    public HashSet(int initialCapacity) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 5506
diff changeset
   146
        map = new HashMap<>(initialCapacity);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * Constructs a new, empty linked hash set.  (This package private
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * constructor is only used by LinkedHashSet.) The backing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * HashMap instance is a LinkedHashMap with the specified initial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * capacity and the specified load factor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * @param      initialCapacity   the initial capacity of the hash map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * @param      loadFactor        the load factor of the hash map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * @param      dummy             ignored (distinguishes this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     *             constructor from other int, float constructor.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * @throws     IllegalArgumentException if the initial capacity is less
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     *             than zero, or if the load factor is nonpositive
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    HashSet(int initialCapacity, float loadFactor, boolean dummy) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 5506
diff changeset
   163
        map = new LinkedHashMap<>(initialCapacity, loadFactor);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * Returns an iterator over the elements in this set.  The elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * are returned in no particular order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * @return an Iterator over the elements in this set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * @see ConcurrentModificationException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    public Iterator<E> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        return map.keySet().iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * Returns the number of elements in this set (its cardinality).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * @return the number of elements in this set (its cardinality)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        return map.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    /**
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   187
     * Returns {@code true} if this set contains no elements.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     *
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   189
     * @return {@code true} if this set contains no elements
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    public boolean isEmpty() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        return map.isEmpty();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    /**
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   196
     * Returns {@code true} if this set contains the specified element.
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   197
     * More formally, returns {@code true} if and only if this set
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   198
     * contains an element {@code e} such that
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   199
     * {@code Objects.equals(o, e)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * @param o element whose presence in this set is to be tested
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   202
     * @return {@code true} if this set contains the specified element
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    public boolean contains(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        return map.containsKey(o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * Adds the specified element to this set if it is not already present.
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   210
     * More formally, adds the specified element {@code e} to this set if
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   211
     * this set contains no element {@code e2} such that
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   212
     * {@code Objects.equals(e, e2)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * If this set already contains the element, the call leaves the set
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   214
     * unchanged and returns {@code false}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * @param e element to be added to this set
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   217
     * @return {@code true} if this set did not already contain the specified
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    public boolean add(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        return map.put(e, PRESENT)==null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * Removes the specified element from this set if it is present.
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   226
     * More formally, removes an element {@code e} such that
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   227
     * {@code Objects.equals(o, e)},
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   228
     * if this set contains such an element.  Returns {@code true} if
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * this set contained the element (or equivalently, if this set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * changed as a result of the call).  (This set will not contain the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * element once the call returns.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * @param o object to be removed from this set, if present
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   234
     * @return {@code true} if the set contained the specified element
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    public boolean remove(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        return map.remove(o)==PRESENT;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * Removes all of the elements from this set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * The set will be empty after this call returns.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        map.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
    /**
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   249
     * Returns a shallow copy of this {@code HashSet} instance: the elements
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * themselves are not cloned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * @return a shallow copy of this set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     */
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 10419
diff changeset
   254
    @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
    public Object clone() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
            HashSet<E> newSet = (HashSet<E>) super.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
            newSet.map = (HashMap<E, Object>) map.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
            return newSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        } catch (CloneNotSupportedException e) {
10419
12c063b39232 7084245: Update usages of InternalError to use exception chaining
sherman
parents: 9035
diff changeset
   261
            throw new InternalError(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    /**
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   266
     * Save the state of this {@code HashSet} instance to a stream (that is,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * serialize it).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     *
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   269
     * @serialData The capacity of the backing {@code HashMap} instance
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     *             (int), and its load factor (float) are emitted, followed by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     *             the size of the set (the number of elements it contains)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     *             (int), followed by all of its elements (each an Object) in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     *             no particular order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     */
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55391
diff changeset
   275
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
    private void writeObject(java.io.ObjectOutputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        throws java.io.IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        // Write out any hidden serialization magic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        s.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        // Write out HashMap capacity and load factor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        s.writeInt(map.capacity());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        s.writeFloat(map.loadFactor());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        // Write out size
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
        s.writeInt(map.size());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        // Write out all elements in the proper order.
4110
ac033ba6ede4 6865582: jsr166y - jsr166 maintenance update
dl
parents: 2
diff changeset
   289
        for (E e : map.keySet())
ac033ba6ede4 6865582: jsr166y - jsr166 maintenance update
dl
parents: 2
diff changeset
   290
            s.writeObject(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
    /**
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 25859
diff changeset
   294
     * Reconstitute the {@code HashSet} instance from a stream (that is,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     * deserialize it).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     */
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55391
diff changeset
   297
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    private void readObject(java.io.ObjectInputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        throws java.io.IOException, ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        // Read in any hidden serialization magic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        s.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
20750
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   303
        // Read capacity and verify non-negative.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        int capacity = s.readInt();
20750
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   305
        if (capacity < 0) {
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   306
            throw new InvalidObjectException("Illegal capacity: " +
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   307
                                             capacity);
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   308
        }
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   309
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   310
        // Read load factor and verify positive and non NaN.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        float loadFactor = s.readFloat();
20750
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   312
        if (loadFactor <= 0 || Float.isNaN(loadFactor)) {
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   313
            throw new InvalidObjectException("Illegal load factor: " +
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   314
                                             loadFactor);
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   315
        }
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   316
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   317
        // Read size and verify non-negative.
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   318
        int size = s.readInt();
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   319
        if (size < 0) {
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   320
            throw new InvalidObjectException("Illegal size: " +
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   321
                                             size);
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   322
        }
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   323
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   324
        // Set the capacity according to the size and load factor ensuring that
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   325
        // the HashMap is at least 25% full but clamping to maximum capacity.
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   326
        capacity = (int) Math.min(size * Math.min(1 / loadFactor, 4.0f),
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   327
                HashMap.MAXIMUM_CAPACITY);
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   328
47423
4fc2a4a29f3d 8174109: Better queuing priorities
smarks
parents: 47216
diff changeset
   329
        // Constructing the backing map will lazily create an array when the first element is
4fc2a4a29f3d 8174109: Better queuing priorities
smarks
parents: 47216
diff changeset
   330
        // added, so check it before construction. Call HashMap.tableSizeFor to compute the
4fc2a4a29f3d 8174109: Better queuing priorities
smarks
parents: 47216
diff changeset
   331
        // actual allocation size. Check Map.Entry[].class since it's the nearest public type to
4fc2a4a29f3d 8174109: Better queuing priorities
smarks
parents: 47216
diff changeset
   332
        // what is actually created.
4fc2a4a29f3d 8174109: Better queuing priorities
smarks
parents: 47216
diff changeset
   333
        SharedSecrets.getJavaObjectInputStreamAccess()
4fc2a4a29f3d 8174109: Better queuing priorities
smarks
parents: 47216
diff changeset
   334
                     .checkArray(s, Map.Entry[].class, HashMap.tableSizeFor(capacity));
4fc2a4a29f3d 8174109: Better queuing priorities
smarks
parents: 47216
diff changeset
   335
20750
330bf22c39fa 8016252: More defensive HashSet.readObject
bpb
parents: 19435
diff changeset
   336
        // Create backing HashMap
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 10419
diff changeset
   337
        map = (((HashSet<?>)this) instanceof LinkedHashSet ?
22078
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 20750
diff changeset
   338
               new LinkedHashMap<>(capacity, loadFactor) :
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 20750
diff changeset
   339
               new HashMap<>(capacity, loadFactor));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        // Read in all elements in the proper order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
        for (int i=0; i<size; i++) {
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 10419
diff changeset
   343
            @SuppressWarnings("unchecked")
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 10419
diff changeset
   344
                E e = (E) s.readObject();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
            map.put(e, PRESENT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
    }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
   348
19435
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 17168
diff changeset
   349
    /**
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 17168
diff changeset
   350
     * Creates a <em><a href="Spliterator.html#binding">late-binding</a></em>
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 17168
diff changeset
   351
     * and <em>fail-fast</em> {@link Spliterator} over the elements in this
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 17168
diff changeset
   352
     * set.
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 17168
diff changeset
   353
     *
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 17168
diff changeset
   354
     * <p>The {@code Spliterator} reports {@link Spliterator#SIZED} and
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 17168
diff changeset
   355
     * {@link Spliterator#DISTINCT}.  Overriding implementations should document
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 17168
diff changeset
   356
     * the reporting of additional characteristic values.
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 17168
diff changeset
   357
     *
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 17168
diff changeset
   358
     * @return a {@code Spliterator} over the elements in this set
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 17168
diff changeset
   359
     * @since 1.8
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 17168
diff changeset
   360
     */
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
   361
    public Spliterator<E> spliterator() {
22078
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 20750
diff changeset
   362
        return new HashMap.KeySpliterator<>(map, 0, -1, 0, 0);
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 14342
diff changeset
   363
    }
55391
1afe0cb93482 8225339: Optimize HashMap.keySet()/HashMap.values()/HashSet toArray() methods
tvaleev
parents: 52427
diff changeset
   364
1afe0cb93482 8225339: Optimize HashMap.keySet()/HashMap.values()/HashSet toArray() methods
tvaleev
parents: 52427
diff changeset
   365
    @Override
1afe0cb93482 8225339: Optimize HashMap.keySet()/HashMap.values()/HashSet toArray() methods
tvaleev
parents: 52427
diff changeset
   366
    public Object[] toArray() {
1afe0cb93482 8225339: Optimize HashMap.keySet()/HashMap.values()/HashSet toArray() methods
tvaleev
parents: 52427
diff changeset
   367
        return map.keysToArray(new Object[map.size()]);
1afe0cb93482 8225339: Optimize HashMap.keySet()/HashMap.values()/HashSet toArray() methods
tvaleev
parents: 52427
diff changeset
   368
    }
1afe0cb93482 8225339: Optimize HashMap.keySet()/HashMap.values()/HashSet toArray() methods
tvaleev
parents: 52427
diff changeset
   369
1afe0cb93482 8225339: Optimize HashMap.keySet()/HashMap.values()/HashSet toArray() methods
tvaleev
parents: 52427
diff changeset
   370
    @Override
1afe0cb93482 8225339: Optimize HashMap.keySet()/HashMap.values()/HashSet toArray() methods
tvaleev
parents: 52427
diff changeset
   371
    public <T> T[] toArray(T[] a) {
1afe0cb93482 8225339: Optimize HashMap.keySet()/HashMap.values()/HashSet toArray() methods
tvaleev
parents: 52427
diff changeset
   372
        return map.keysToArray(map.prepareArray(a));
1afe0cb93482 8225339: Optimize HashMap.keySet()/HashMap.values()/HashSet toArray() methods
tvaleev
parents: 52427
diff changeset
   373
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
}