forked from bjmashibing/java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHashSet.html
More file actions
760 lines (753 loc) · 39 KB
/
Copy pathHashSet.html
File metadata and controls
760 lines (753 loc) · 39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
<!DOCTYPE HTML>
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc -->
<title>HashSet (Java SE 12 & JDK 12 )</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="keywords" content="java.util.HashSet class">
<meta name="keywords" content="iterator()">
<meta name="keywords" content="size()">
<meta name="keywords" content="isEmpty()">
<meta name="keywords" content="contains()">
<meta name="keywords" content="add()">
<meta name="keywords" content="remove()">
<meta name="keywords" content="clear()">
<meta name="keywords" content="clone()">
<meta name="keywords" content="spliterator()">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
<script type="text/javascript" src="../../../jquery/jszip/dist/jszip.min.js"></script>
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
<!--[if IE]>
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
<![endif]-->
<script type="text/javascript" src="../../../jquery/jquery-3.3.1.js"></script>
<script type="text/javascript" src="../../../jquery/jquery-migrate-3.0.1.js"></script>
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="HashSet (Java SE 12 & JDK 12 )";
}
}
catch(err) {
}
//-->
var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
var pathtoroot = "../../../";
var useModuleDirectories = true;
loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<header role="banner">
<nav role="navigation">
<div class="fixedNav">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a id="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../index.html">Overview</a></li>
<li><a href="../../module-summary.html">Module</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/HashSet.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><div style="margin-top: 14px;"><strong>Java SE 12 & JDK 12</strong> </div></div>
</div>
<div class="subNav">
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<ul class="navListSearch">
<li><label for="search">SEARCH:</label>
<input type="text" id="search" value="search" disabled="disabled">
<input type="reset" id="reset" value="reset" disabled="disabled">
</li>
</ul>
</div>
<a id="skip.navbar.top">
<!-- -->
</a>
<!-- ========= END OF TOP NAVBAR ========= -->
</div>
<div class="navPadding"> </div>
<script type="text/javascript"><!--
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
//-->
</script>
</nav>
</header>
<!-- ======== START OF CLASS DATA ======== -->
<main role="main">
<div class="header">
<div class="subTitle"><span class="moduleLabelInType">Module</span> <a href="../../module-summary.html">java.base</a></div>
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">java.util</a></div>
<h2 title="Class HashSet" class="title">Class HashSet<E></h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="../lang/Object.html" title="class in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li><a href="AbstractCollection.html" title="class in java.util">java.util.AbstractCollection</a><E></li>
<li>
<ul class="inheritance">
<li><a href="AbstractSet.html" title="class in java.util">java.util.AbstractSet</a><E></li>
<li>
<ul class="inheritance">
<li>java.util.HashSet<E></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt><span class="paramLabel">Type Parameters:</span></dt>
<dd><code>E</code> - the type of elements maintained by this set</dd>
</dl>
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><code><a href="../io/Serializable.html" title="interface in java.io">Serializable</a></code>, <code><a href="../lang/Cloneable.html" title="interface in java.lang">Cloneable</a></code>, <code><a href="../lang/Iterable.html" title="interface in java.lang">Iterable</a><E></code>, <code><a href="Collection.html" title="interface in java.util">Collection</a><E></code>, <code><a href="Set.html" title="interface in java.util">Set</a><E></code></dd>
</dl>
<dl>
<dt>Direct Known Subclasses:</dt>
<dd><code><a href="../../../java.desktop/javax/print/attribute/standard/JobStateReasons.html" title="class in javax.print.attribute.standard">JobStateReasons</a></code>, <code><a href="LinkedHashSet.html" title="class in java.util">LinkedHashSet</a></code></dd>
</dl>
<hr>
<pre>public class <span class="typeNameLabel">HashSet<E></span>
extends <a href="AbstractSet.html" title="class in java.util">AbstractSet</a><E>
implements <a href="Set.html" title="interface in java.util">Set</a><E>, <a href="../lang/Cloneable.html" title="interface in java.lang">Cloneable</a>, <a href="../io/Serializable.html" title="interface in java.io">Serializable</a></pre>
<div class="block">This class implements the <code>Set</code> interface, backed by a hash table
(actually a <code>HashMap</code> instance). It makes no guarantees as to the
iteration order of the set; in particular, it does not guarantee that the
order will remain constant over time. This class permits the <code>null</code>
element.
<p>This class offers constant time performance for the basic operations
(<code>add</code>, <code>remove</code>, <code>contains</code> and <code>size</code>),
assuming the hash function disperses the elements properly among the
buckets. Iterating over this set requires time proportional to the sum of
the <code>HashSet</code> instance's size (the number of elements) plus the
"capacity" of the backing <code>HashMap</code> instance (the number of
buckets). Thus, it's very important not to set the initial capacity too
high (or the load factor too low) if iteration performance is important.
<p><strong>Note that this implementation is not synchronized.</strong>
If multiple threads access a hash set concurrently, and at least one of
the threads modifies the set, it <i>must</i> be synchronized externally.
This is typically accomplished by synchronizing on some object that
naturally encapsulates the set.
If no such object exists, the set should be "wrapped" using the
<a href="Collections.html#synchronizedSet(java.util.Set)"><code>Collections.synchronizedSet</code></a>
method. This is best done at creation time, to prevent accidental
unsynchronized access to the set:<pre>
Set s = Collections.synchronizedSet(new HashSet(...));</pre>
<p>The iterators returned by this class's <code>iterator</code> method are
<i>fail-fast</i>: if the set is modified at any time after the iterator is
created, in any way except through the iterator's own <code>remove</code>
method, the Iterator throws a <a href="ConcurrentModificationException.html" title="class in java.util"><code>ConcurrentModificationException</code></a>.
Thus, in the face of concurrent modification, the iterator fails quickly
and cleanly, rather than risking arbitrary, non-deterministic behavior at
an undetermined time in the future.
<p>Note that the fail-fast behavior of an iterator cannot be guaranteed
as it is, generally speaking, impossible to make any hard guarantees in the
presence of unsynchronized concurrent modification. Fail-fast iterators
throw <code>ConcurrentModificationException</code> on a best-effort basis.
Therefore, it would be wrong to write a program that depended on this
exception for its correctness: <i>the fail-fast behavior of iterators
should be used only to detect bugs.</i>
<p>This class is a member of the
<a href="../../../java.base/java/util/package-summary.html#CollectionsFramework">
Java Collections Framework</a>.</div>
<dl>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>1.2</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="Collection.html" title="interface in java.util"><code>Collection</code></a>,
<a href="Set.html" title="interface in java.util"><code>Set</code></a>,
<a href="TreeSet.html" title="class in java.util"><code>TreeSet</code></a>,
<a href="HashMap.html" title="class in java.util"><code>HashMap</code></a>,
<a href="../../../serialized-form.html#java.util.HashSet">Serialized Form</a></dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<div class="memberSummary">
<table>
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Constructor</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">HashSet</a></span>()</code></th>
<td class="colLast">
<div class="block">Constructs a new, empty set; the backing <code>HashMap</code> instance has
default initial capacity (16) and load factor (0.75).</div>
</td>
</tr>
<tr class="rowColor">
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(int)">HashSet</a></span>​(int initialCapacity)</code></th>
<td class="colLast">
<div class="block">Constructs a new, empty set; the backing <code>HashMap</code> instance has
the specified initial capacity and default load factor (0.75).</div>
</td>
</tr>
<tr class="altColor">
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(int,float)">HashSet</a></span>​(int initialCapacity,
float loadFactor)</code></th>
<td class="colLast">
<div class="block">Constructs a new, empty set; the backing <code>HashMap</code> instance has
the specified initial capacity and the specified load factor.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(java.util.Collection)">HashSet</a></span>​(<a href="Collection.html" title="interface in java.util">Collection</a><? extends <a href="HashSet.html" title="type parameter in HashSet">E</a>> c)</code></th>
<td class="colLast">
<div class="block">Constructs a new set containing the elements in the specified
collection.</div>
</td>
</tr>
</tbody>
</table>
</div>
</li>
</ul>
</section>
<!-- ========== METHOD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<div class="memberSummary">
<div role="tablist" aria-orientation="horizontal"><button role="tab" aria-selected="true" aria-controls="memberSummary_tabpanel" tabindex="0" onkeydown="switchTab(event)" id="t0" class="activeTableTab">All Methods</button><button role="tab" aria-selected="false" aria-controls="memberSummary_tabpanel" tabindex="-1" onkeydown="switchTab(event)" id="t2" class="tableTab" onclick="show(2);">Instance Methods</button><button role="tab" aria-selected="false" aria-controls="memberSummary_tabpanel" tabindex="-1" onkeydown="switchTab(event)" id="t4" class="tableTab" onclick="show(8);">Concrete Methods</button></div>
<div id="memberSummary_tabpanel" role="tabpanel">
<table aria-labelledby="t0">
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colSecond" scope="col">Method</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor" id="i0">
<td class="colFirst"><code>boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#add(E)">add</a></span>​(<a href="HashSet.html" title="type parameter in HashSet">E</a> e)</code></th>
<td class="colLast">
<div class="block">Adds the specified element to this set if it is not already present.</div>
</td>
</tr>
<tr class="rowColor" id="i1">
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#clear()">clear</a></span>()</code></th>
<td class="colLast">
<div class="block">Removes all of the elements from this set.</div>
</td>
</tr>
<tr class="altColor" id="i2">
<td class="colFirst"><code><a href="../lang/Object.html" title="class in java.lang">Object</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#clone()">clone</a></span>()</code></th>
<td class="colLast">
<div class="block">Returns a shallow copy of this <code>HashSet</code> instance: the elements
themselves are not cloned.</div>
</td>
</tr>
<tr class="rowColor" id="i3">
<td class="colFirst"><code>boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#contains(java.lang.Object)">contains</a></span>​(<a href="../lang/Object.html" title="class in java.lang">Object</a> o)</code></th>
<td class="colLast">
<div class="block">Returns <code>true</code> if this set contains the specified element.</div>
</td>
</tr>
<tr class="altColor" id="i4">
<td class="colFirst"><code>boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isEmpty()">isEmpty</a></span>()</code></th>
<td class="colLast">
<div class="block">Returns <code>true</code> if this set contains no elements.</div>
</td>
</tr>
<tr class="rowColor" id="i5">
<td class="colFirst"><code><a href="Iterator.html" title="interface in java.util">Iterator</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#iterator()">iterator</a></span>()</code></th>
<td class="colLast">
<div class="block">Returns an iterator over the elements in this set.</div>
</td>
</tr>
<tr class="altColor" id="i6">
<td class="colFirst"><code>boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#remove(java.lang.Object)">remove</a></span>​(<a href="../lang/Object.html" title="class in java.lang">Object</a> o)</code></th>
<td class="colLast">
<div class="block">Removes the specified element from this set if it is present.</div>
</td>
</tr>
<tr class="rowColor" id="i7">
<td class="colFirst"><code>int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#size()">size</a></span>()</code></th>
<td class="colLast">
<div class="block">Returns the number of elements in this set (its cardinality).</div>
</td>
</tr>
<tr class="altColor" id="i8">
<td class="colFirst"><code><a href="Spliterator.html" title="interface in java.util">Spliterator</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#spliterator()">spliterator</a></span>()</code></th>
<td class="colLast">
<div class="block">Creates a <em><a href="Spliterator.html#binding">late-binding</a></em>
and <em>fail-fast</em> <a href="Spliterator.html" title="interface in java.util"><code>Spliterator</code></a> over the elements in this
set.</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.util.AbstractSet">
<!-- -->
</a>
<h3>Methods declared in class java.util.<a href="AbstractSet.html" title="class in java.util">AbstractSet</a></h3>
<code><a href="AbstractSet.html#equals(java.lang.Object)">equals</a>, <a href="AbstractSet.html#hashCode()">hashCode</a>, <a href="AbstractSet.html#removeAll(java.util.Collection)">removeAll</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.util.AbstractCollection">
<!-- -->
</a>
<h3>Methods declared in class java.util.<a href="AbstractCollection.html" title="class in java.util">AbstractCollection</a></h3>
<code><a href="AbstractCollection.html#addAll(java.util.Collection)">addAll</a>, <a href="AbstractCollection.html#containsAll(java.util.Collection)">containsAll</a>, <a href="AbstractCollection.html#retainAll(java.util.Collection)">retainAll</a>, <a href="AbstractCollection.html#toArray()">toArray</a>, <a href="AbstractCollection.html#toArray(T%5B%5D)">toArray</a>, <a href="AbstractCollection.html#toString()">toString</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods declared in class java.lang.<a href="../lang/Object.html" title="class in java.lang">Object</a></h3>
<code><a href="../lang/Object.html#finalize()">finalize</a>, <a href="../lang/Object.html#getClass()">getClass</a>, <a href="../lang/Object.html#notify()">notify</a>, <a href="../lang/Object.html#notifyAll()">notifyAll</a>, <a href="../lang/Object.html#wait()">wait</a>, <a href="../lang/Object.html#wait(long)">wait</a>, <a href="../lang/Object.html#wait(long,int)">wait</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.util.Collection">
<!-- -->
</a>
<h3>Methods declared in interface java.util.<a href="Collection.html" title="interface in java.util">Collection</a></h3>
<code><a href="Collection.html#parallelStream()">parallelStream</a>, <a href="Collection.html#removeIf(java.util.function.Predicate)">removeIf</a>, <a href="Collection.html#stream()">stream</a>, <a href="Collection.html#toArray(java.util.function.IntFunction)">toArray</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Iterable">
<!-- -->
</a>
<h3>Methods declared in interface java.lang.<a href="../lang/Iterable.html" title="interface in java.lang">Iterable</a></h3>
<code><a href="../lang/Iterable.html#forEach(java.util.function.Consumer)">forEach</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.util.Set">
<!-- -->
</a>
<h3>Methods declared in interface java.util.<a href="Set.html" title="interface in java.util">Set</a></h3>
<code><a href="Set.html#addAll(java.util.Collection)">addAll</a>, <a href="Set.html#containsAll(java.util.Collection)">containsAll</a>, <a href="Set.html#equals(java.lang.Object)">equals</a>, <a href="Set.html#hashCode()">hashCode</a>, <a href="Set.html#removeAll(java.util.Collection)">removeAll</a>, <a href="Set.html#retainAll(java.util.Collection)">retainAll</a>, <a href="Set.html#toArray()">toArray</a>, <a href="Set.html#toArray(T%5B%5D)">toArray</a></code></li>
</ul>
</li>
</ul>
</section>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a id="<init>()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HashSet</h4>
<pre>public HashSet()</pre>
<div class="block">Constructs a new, empty set; the backing <code>HashMap</code> instance has
default initial capacity (16) and load factor (0.75).</div>
</li>
</ul>
<a id="<init>(java.util.Collection)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HashSet</h4>
<pre>public HashSet​(<a href="Collection.html" title="interface in java.util">Collection</a><? extends <a href="HashSet.html" title="type parameter in HashSet">E</a>> c)</pre>
<div class="block">Constructs a new set containing the elements in the specified
collection. The <code>HashMap</code> is created with default load factor
(0.75) and an initial capacity sufficient to contain the elements in
the specified collection.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>c</code> - the collection whose elements are to be placed into this set</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../lang/NullPointerException.html" title="class in java.lang">NullPointerException</a></code> - if the specified collection is null</dd>
</dl>
</li>
</ul>
<a id="<init>(int,float)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HashSet</h4>
<pre>public HashSet​(int initialCapacity,
float loadFactor)</pre>
<div class="block">Constructs a new, empty set; the backing <code>HashMap</code> instance has
the specified initial capacity and the specified load factor.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>initialCapacity</code> - the initial capacity of the hash map</dd>
<dd><code>loadFactor</code> - the load factor of the hash map</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../lang/IllegalArgumentException.html" title="class in java.lang">IllegalArgumentException</a></code> - if the initial capacity is less
than zero, or if the load factor is nonpositive</dd>
</dl>
</li>
</ul>
<a id="<init>(int)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>HashSet</h4>
<pre>public HashSet​(int initialCapacity)</pre>
<div class="block">Constructs a new, empty set; the backing <code>HashMap</code> instance has
the specified initial capacity and default load factor (0.75).</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>initialCapacity</code> - the initial capacity of the hash table</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../lang/IllegalArgumentException.html" title="class in java.lang">IllegalArgumentException</a></code> - if the initial capacity is less
than zero</dd>
</dl>
</li>
</ul>
</li>
</ul>
</section>
<!-- ============ METHOD DETAIL ========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a id="iterator()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>iterator</h4>
<pre class="methodSignature">public <a href="Iterator.html" title="interface in java.util">Iterator</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>> iterator()</pre>
<div class="block">Returns an iterator over the elements in this set. The elements
are returned in no particular order.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="Collection.html#iterator()">iterator</a></code> in interface <code><a href="Collection.html" title="interface in java.util">Collection</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../lang/Iterable.html#iterator()">iterator</a></code> in interface <code><a href="../lang/Iterable.html" title="interface in java.lang">Iterable</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="Set.html#iterator()">iterator</a></code> in interface <code><a href="Set.html" title="interface in java.util">Set</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="AbstractCollection.html#iterator()">iterator</a></code> in class <code><a href="AbstractCollection.html" title="class in java.util">AbstractCollection</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>an Iterator over the elements in this set</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="ConcurrentModificationException.html" title="class in java.util"><code>ConcurrentModificationException</code></a></dd>
</dl>
</li>
</ul>
<a id="size()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>size</h4>
<pre class="methodSignature">public int size()</pre>
<div class="block">Returns the number of elements in this set (its cardinality).</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="Collection.html#size()">size</a></code> in interface <code><a href="Collection.html" title="interface in java.util">Collection</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="Set.html#size()">size</a></code> in interface <code><a href="Set.html" title="interface in java.util">Set</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the number of elements in this set (its cardinality)</dd>
</dl>
</li>
</ul>
<a id="isEmpty()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isEmpty</h4>
<pre class="methodSignature">public boolean isEmpty()</pre>
<div class="block">Returns <code>true</code> if this set contains no elements.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="Collection.html#isEmpty()">isEmpty</a></code> in interface <code><a href="Collection.html" title="interface in java.util">Collection</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="Set.html#isEmpty()">isEmpty</a></code> in interface <code><a href="Set.html" title="interface in java.util">Set</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="AbstractCollection.html#isEmpty()">isEmpty</a></code> in class <code><a href="AbstractCollection.html" title="class in java.util">AbstractCollection</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd><code>true</code> if this set contains no elements</dd>
</dl>
</li>
</ul>
<a id="contains(java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>contains</h4>
<pre class="methodSignature">public boolean contains​(<a href="../lang/Object.html" title="class in java.lang">Object</a> o)</pre>
<div class="block">Returns <code>true</code> if this set contains the specified element.
More formally, returns <code>true</code> if and only if this set
contains an element <code>e</code> such that
<code>Objects.equals(o, e)</code>.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="Collection.html#contains(java.lang.Object)">contains</a></code> in interface <code><a href="Collection.html" title="interface in java.util">Collection</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="Set.html#contains(java.lang.Object)">contains</a></code> in interface <code><a href="Set.html" title="interface in java.util">Set</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="AbstractCollection.html#contains(java.lang.Object)">contains</a></code> in class <code><a href="AbstractCollection.html" title="class in java.util">AbstractCollection</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>o</code> - element whose presence in this set is to be tested</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd><code>true</code> if this set contains the specified element</dd>
</dl>
</li>
</ul>
<a id="add(java.lang.Object)">
<!-- -->
</a><a id="add(E)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>add</h4>
<pre class="methodSignature">public boolean add​(<a href="HashSet.html" title="type parameter in HashSet">E</a> e)</pre>
<div class="block">Adds the specified element to this set if it is not already present.
More formally, adds the specified element <code>e</code> to this set if
this set contains no element <code>e2</code> such that
<code>Objects.equals(e, e2)</code>.
If this set already contains the element, the call leaves the set
unchanged and returns <code>false</code>.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="Collection.html#add(E)">add</a></code> in interface <code><a href="Collection.html" title="interface in java.util">Collection</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="Set.html#add(E)">add</a></code> in interface <code><a href="Set.html" title="interface in java.util">Set</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="AbstractCollection.html#add(E)">add</a></code> in class <code><a href="AbstractCollection.html" title="class in java.util">AbstractCollection</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>e</code> - element to be added to this set</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd><code>true</code> if this set did not already contain the specified
element</dd>
</dl>
</li>
</ul>
<a id="remove(java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>remove</h4>
<pre class="methodSignature">public boolean remove​(<a href="../lang/Object.html" title="class in java.lang">Object</a> o)</pre>
<div class="block">Removes the specified element from this set if it is present.
More formally, removes an element <code>e</code> such that
<code>Objects.equals(o, e)</code>,
if this set contains such an element. Returns <code>true</code> if
this set contained the element (or equivalently, if this set
changed as a result of the call). (This set will not contain the
element once the call returns.)</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="Collection.html#remove(java.lang.Object)">remove</a></code> in interface <code><a href="Collection.html" title="interface in java.util">Collection</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="Set.html#remove(java.lang.Object)">remove</a></code> in interface <code><a href="Set.html" title="interface in java.util">Set</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="AbstractCollection.html#remove(java.lang.Object)">remove</a></code> in class <code><a href="AbstractCollection.html" title="class in java.util">AbstractCollection</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>o</code> - object to be removed from this set, if present</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd><code>true</code> if the set contained the specified element</dd>
</dl>
</li>
</ul>
<a id="clear()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>clear</h4>
<pre class="methodSignature">public void clear()</pre>
<div class="block">Removes all of the elements from this set.
The set will be empty after this call returns.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="Collection.html#clear()">clear</a></code> in interface <code><a href="Collection.html" title="interface in java.util">Collection</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="Set.html#clear()">clear</a></code> in interface <code><a href="Set.html" title="interface in java.util">Set</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="AbstractCollection.html#clear()">clear</a></code> in class <code><a href="AbstractCollection.html" title="class in java.util">AbstractCollection</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
</dl>
</li>
</ul>
<a id="clone()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>clone</h4>
<pre class="methodSignature">public <a href="../lang/Object.html" title="class in java.lang">Object</a> clone()</pre>
<div class="block">Returns a shallow copy of this <code>HashSet</code> instance: the elements
themselves are not cloned.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="../lang/Object.html#clone()">clone</a></code> in class <code><a href="../lang/Object.html" title="class in java.lang">Object</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a shallow copy of this set</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../lang/Cloneable.html" title="interface in java.lang"><code>Cloneable</code></a></dd>
</dl>
</li>
</ul>
<a id="spliterator()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>spliterator</h4>
<pre class="methodSignature">public <a href="Spliterator.html" title="interface in java.util">Spliterator</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>> spliterator()</pre>
<div class="block">Creates a <em><a href="Spliterator.html#binding">late-binding</a></em>
and <em>fail-fast</em> <a href="Spliterator.html" title="interface in java.util"><code>Spliterator</code></a> over the elements in this
set.
<p>The <code>Spliterator</code> reports <a href="Spliterator.html#SIZED"><code>Spliterator.SIZED</code></a> and
<a href="Spliterator.html#DISTINCT"><code>Spliterator.DISTINCT</code></a>. Overriding implementations should document
the reporting of additional characteristic values.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="Collection.html#spliterator()">spliterator</a></code> in interface <code><a href="Collection.html" title="interface in java.util">Collection</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../lang/Iterable.html#spliterator()">spliterator</a></code> in interface <code><a href="../lang/Iterable.html" title="interface in java.lang">Iterable</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="Set.html#spliterator()">spliterator</a></code> in interface <code><a href="Set.html" title="interface in java.util">Set</a><<a href="HashSet.html" title="type parameter in HashSet">E</a>></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a <code>Spliterator</code> over the elements in this set</dd>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>1.8</dd>
</dl>
</li>
</ul>
</li>
</ul>
</section>
</li>
</ul>
</div>
</div>
</main>
<!-- ========= END OF CLASS DATA ========= -->
<footer role="contentinfo">
<nav role="navigation">
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a id="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../index.html">Overview</a></li>
<li><a href="../../module-summary.html">Module</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/HashSet.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><div style="margin-top: 14px;"><strong>Java SE 12 & JDK 12</strong> </div></div>
</div>
<div class="subNav">
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
</div>
<a id="skip.navbar.bottom">
<!-- -->
</a>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</nav>
<p class="legalCopy"><small><a href="https://bugreport.java.com/bugreport/">Report a bug or suggest an enhancement</a><br> For further API reference and developer documentation see the <a href="https://docs.oracle.com/pls/topic/lookup?ctx=javase12.0.2&id=homepage" target="_blank">Java SE Documentation</a>, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.<br> Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.<br> <a href="../../../../legal/copyright.html">Copyright</a> © 1993, 2019, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.<br>All rights reserved. Use is subject to <a href="https://www.oracle.com/technetwork/java/javase/terms/license/java12.0.2speclicense.html">license terms</a> and the <a href="https://www.oracle.com/technetwork/java/redist-137594.html">documentation redistribution policy</a>. <!-- Version 12.0.2+10 --></small></p>
</footer>
</body>
</html>