-
Notifications
You must be signed in to change notification settings - Fork 668
/
Hashtable.java
1928 lines (1594 loc) · 70.5 KB
/
Hashtable.java
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
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 1994, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package java.util;
import java.io.IOException;
import java.io.Serializable;
import java.io.StreamCorruptedException;
import java.util.function.BiConsumer;
import java.util.function.BiFunction;
import java.util.function.Function;
/**
* This class implements a hash table, which maps keys to values. Any
* non-{@code null} object can be used as a key or as a value. <p>
*
* To successfully store and retrieve objects from a hashtable, the
* objects used as keys must implement the {@code hashCode}
* method and the {@code equals} method. <p>
*
* An instance of {@code Hashtable} has two parameters that affect its
* performance: <i>initial capacity</i> and <i>load factor</i>. The
* <i>capacity</i> is the number of <i>buckets</i> in the hash table, and the
* <i>initial capacity</i> is simply the capacity at the time the hash table
* is created. Note that the hash table is <i>open</i>: in the case of a "hash
* collision", a single bucket stores multiple entries, which must be searched
* sequentially. The <i>load factor</i> is a measure of how full the hash
* table is allowed to get before its capacity is automatically increased.
* The initial capacity and load factor parameters are merely hints to
* the implementation. The exact details as to when and whether the rehash
* method is invoked are implementation-dependent.<p>
*
* Generally, the default load factor (.75) offers a good tradeoff between
* time and space costs. Higher values decrease the space overhead but
* increase the time cost to look up an entry (which is reflected in most
* {@code Hashtable} operations, including {@code get} and {@code put}).<p>
*
* The initial capacity controls a tradeoff between wasted space and the
* need for {@code rehash} operations, which are time-consuming.
* No {@code rehash} operations will <i>ever</i> occur if the initial
* capacity is greater than the maximum number of entries the
* {@code Hashtable} will contain divided by its load factor. However,
* setting the initial capacity too high can waste space.<p>
*
* If many entries are to be made into a {@code Hashtable},
* creating it with a sufficiently large capacity may allow the
* entries to be inserted more efficiently than letting it perform
* automatic rehashing as needed to grow the table. <p>
*
* This example creates a hashtable of numbers. It uses the names of
* the numbers as keys:
* <pre> {@code
* Hashtable<String, Integer> numbers
* = new Hashtable<String, Integer>();
* numbers.put("one", 1);
* numbers.put("two", 2);
* numbers.put("three", 3);}</pre>
*
* <p>To retrieve a number, use the following code:
* <pre> {@code
* Integer n = numbers.get("two");
* if (n != null) {
* System.out.println("two = " + n);
* }}</pre>
*
* <p>The iterators returned by the {@code iterator} method of the collections
* returned by all of this class's "collection view methods" are
* <em>fail-fast</em>: if the Hashtable is structurally modified at any time
* after the iterator is created, in any way except through the iterator's own
* {@code remove} method, the iterator will throw a {@link
* ConcurrentModificationException}. 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.
* The Enumerations returned by Hashtable's {@link #keys keys} and
* {@link #elements elements} methods are <em>not</em> fail-fast; if the
* Hashtable is structurally modified at any time after the enumeration is
* created then the results of enumerating are undefined.
*
* <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} 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>As of the Java 2 platform v1.2, this class was retrofitted to
* implement the {@link Map} interface, making it a member of the
* <a href="{@docRoot}/java.base/java/util/package-summary.html#CollectionsFramework">
*
* Java Collections Framework</a>. Unlike the new collection
* implementations, {@code Hashtable} is synchronized. If a
* thread-safe implementation is not needed, it is recommended to use
* {@link HashMap} in place of {@code Hashtable}. If a thread-safe
* highly-concurrent implementation is desired, then it is recommended
* to use {@link java.util.concurrent.ConcurrentHashMap} in place of
* {@code Hashtable}.
*
* @param <K> the type of keys maintained by this map
* @param <V> the type of mapped values
*
* @author Arthur van Hoff
* @author Josh Bloch
* @author Neal Gafter
* @see Object#equals(java.lang.Object)
* @see Object#hashCode()
* @see Hashtable#rehash()
* @see Collection
* @see Map
* @see HashMap
* @see TreeMap
* @since 1.0
*/
/*
* Hashtable结构:数组+链表。key与value均不能为null
*
* 注:Hashtable线程安全,但性能一般。建议视情形使用HashMap或ConcurrentHashMap来代替
*/
public class Hashtable<K, V> extends Dictionary<K, V> implements Map<K, V>, Cloneable, Serializable {
// Types of Enumerations/Iterations
private static final int KEYS = 0;
private static final int VALUES = 1;
private static final int ENTRIES = 2;
/**
* The maximum size of array to allocate.
* Some VMs reserve some header words in an array.
* Attempts to allocate larger arrays may result in
* OutOfMemoryError: Requested array size exceeds VM limit
*/
private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8; // 哈希数组最大容量
/**
* The hash table data.
*/
private transient Entry<?,?>[] table; // 哈希数组(注:哈希数组的容量跟Hashtable可以存储的元素数量不是一回事)
/**
* The total number of entries in the hash table.
*/
private transient int count; // Hashtable中的元素数量
/**
* The load factor for the hashtable.
*
* @serial
*/
private float loadFactor; // Hashtable当前使用的装载因子
/**
* The table is rehashed when its size exceeds this threshold. (The
* value of this field is (int)(capacity * loadFactor).)
*
* @serial
*/
private int threshold; // Hashtable扩容阈值,默认为0.75*哈希数组容量
/**
* Each of these fields are initialized to contain an instance of the
* appropriate view the first time this view is requested. The views are
* stateless, so there's no reason to create more than one of each.
*/
private transient volatile Set<K> keySet; // Hashtable中key的集合
private transient volatile Collection<V> values; // Hashtable中value的集合
private transient volatile Set<Map.Entry<K,V>> entrySet; // Hashtable中entry的集合
/**
* The number of times this Hashtable has been structurally modified
* Structural modifications are those that change the number of entries in
* the Hashtable or otherwise modify its internal structure (e.g.,
* rehash). This field is used to make iterators on Collection-views of
* the Hashtable fail-fast. (See ConcurrentModificationException).
*/
private transient int modCount = 0; // 记录Hashtable结构的修改次数
/*▼ 构造器 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Constructs a new, empty hashtable with a default initial capacity (11)
* and load factor (0.75).
*/
public Hashtable() {
this(11, 0.75f);
}
/**
* Constructs a new, empty hashtable with the specified initial capacity
* and default load factor (0.75).
*
* @param initialCapacity the initial capacity of the hashtable.
*
* @throws IllegalArgumentException if the initial capacity is less
* than zero.
*/
public Hashtable(int initialCapacity) {
this(initialCapacity, 0.75f);
}
/**
* Constructs a new, empty hashtable with the specified initial
* capacity and the specified load factor.
*
* @param initialCapacity the initial capacity of the hashtable.
* @param loadFactor the load factor of the hashtable.
*
* @throws IllegalArgumentException if the initial capacity is less
* than zero, or if the load factor is nonpositive.
*/
public Hashtable(int initialCapacity, float loadFactor) {
if(initialCapacity<0) {
throw new IllegalArgumentException("Illegal Capacity: " + initialCapacity);
}
if(loadFactor<=0 || Float.isNaN(loadFactor)) {
throw new IllegalArgumentException("Illegal Load: " + loadFactor);
}
if(initialCapacity == 0) {
initialCapacity = 1;
}
this.loadFactor = loadFactor;
table = new Entry<?, ?>[initialCapacity];
threshold = (int) Math.min(initialCapacity * loadFactor, MAX_ARRAY_SIZE + 1);
}
/**
* Constructs a new hashtable with the same mappings as the given
* Map. The hashtable is created with an initial capacity sufficient to
* hold the mappings in the given Map and a default load factor (0.75).
*
* @param t the map whose mappings are to be placed in this map.
*
* @throws NullPointerException if the specified map is null.
* @since 1.2
*/
public Hashtable(Map<? extends K, ? extends V> t) {
this(Math.max(2 * t.size(), 11), 0.75f);
putAll(t);
}
/**
* A constructor chained from {@link Properties} keeps Hashtable fields
* uninitialized since they are not used.
*
* @param dummy a dummy parameter
*/
Hashtable(Void dummy) {
}
/*▲ 构造器 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 存值 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Maps the specified {@code key} to the specified
* {@code value} in this hashtable. Neither the key nor the
* value can be {@code null}. <p>
*
* The value can be retrieved by calling the {@code get} method
* with a key that is equal to the original key.
*
* @param key the hashtable key
* @param value the value
*
* @return the previous value of the specified key in this hashtable,
* or {@code null} if it did not have one
*
* @throws NullPointerException if the key or value is
* {@code null}
* @see Object#equals(Object)
* @see #get(Object)
*/
// 将指定的元素(key-value)存入Hashtable,并返回旧值,允许覆盖
public synchronized V put(K key, V value) {
// Make sure the value is not null
if(value == null) {
throw new NullPointerException();
}
// Makes sure the key is not already in the hashtable.
Entry<?, ?>[] tab = table;
int hash = key.hashCode();
int index = (hash & 0x7FFFFFFF) % tab.length;
@SuppressWarnings("unchecked")
Entry<K, V> entry = (Entry<K, V>) tab[index];
// 查找插入位置
while(entry != null) {
// 如果遇到了同位元素,则直接覆盖
if((entry.hash == hash) && entry.key.equals(key)) {
V old = entry.value;
entry.value = value;
return old;
}
entry = entry.next;
}
// 向table[index]处插入元素(头插法),必要时需要扩容
addEntry(hash, key, value, index);
return null;
}
// 将指定的元素(key-value)存入Hashtable,并返回旧值,不允许覆盖
@Override
public synchronized V putIfAbsent(K key, V value) {
// Make sure the value is not null
Objects.requireNonNull(value);
// Makes sure the key is not already in the hashtable.
Entry<?, ?>[] tab = table;
int hash = key.hashCode();
int index = (hash & 0x7FFFFFFF) % tab.length;
@SuppressWarnings("unchecked")
Entry<K, V> entry = (Entry<K, V>) tab[index];
// 查找插入位置
while(entry != null) {
// 如果遇到了同位元素,则直接覆盖
if((entry.hash == hash) && entry.key.equals(key)) {
V old = entry.value;
if(old == null) {
entry.value = value;
}
return old;
}
entry = entry.next;
}
// 向table[index]处插入元素(头插法),必要时需要扩容
addEntry(hash, key, value, index);
return null;
}
/**
* Copies all of the mappings from the specified map to this hashtable.
* These mappings will replace any mappings that this hashtable had for any
* of the keys currently in the specified map.
*
* @param t mappings to be stored in this map
*
* @throws NullPointerException if the specified map is null
* @since 1.2
*/
// 将指定Map中的元素存入到当前Map(允许覆盖)
public synchronized void putAll(Map<? extends K, ? extends V> t) {
for(Map.Entry<? extends K, ? extends V> e : t.entrySet()) {
put(e.getKey(), e.getValue());
}
}
/*▲ 存值 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 取值 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Returns the value to which the specified key is mapped,
* or {@code null} if this map contains no mapping for the key.
*
* <p>More formally, if this map contains a mapping from a key
* {@code k} to a value {@code v} such that {@code (key.equals(k))},
* then this method returns {@code v}; otherwise it returns
* {@code null}. (There can be at most one such mapping.)
*
* @param key the key whose associated value is to be returned
* @return the value to which the specified key is mapped, or
* {@code null} if this map contains no mapping for the key
* @throws NullPointerException if the specified key is null
* @see #put(Object, Object)
*/
// 根据指定的key获取对应的value,如果不存在,则返回null
@SuppressWarnings("unchecked")
public synchronized V get(Object key) {
Entry<?,?> tab[] = table;
int hash = key.hashCode();
int index = (hash & 0x7FFFFFFF) % tab.length;
for (Entry<?,?> e = tab[index] ; e != null ; e = e.next) {
if ((e.hash == hash) && e.key.equals(key)) {
return (V)e.value;
}
}
return null;
}
// 根据指定的key获取对应的value,如果不存在,则返回指定的默认值defaultValue
@Override
public synchronized V getOrDefault(Object key, V defaultValue) {
V result = get(key);
return (null == result) ? defaultValue : result;
}
/*▲ 取值 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 移除 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Removes the key (and its corresponding value) from this
* hashtable. This method does nothing if the key is not in the hashtable.
*
* @param key the key that needs to be removed
*
* @return the value to which the key had been mapped in this hashtable,
* or {@code null} if the key did not have a mapping
*
* @throws NullPointerException if the key is {@code null}
*/
// 移除拥有指定key的元素,并返回刚刚移除的元素的值
public synchronized V remove(Object key) {
Entry<?, ?>[] tab = table;
int hash = key.hashCode();
int index = (hash & 0x7FFFFFFF) % tab.length;
@SuppressWarnings("unchecked")
Entry<K, V> e = (Entry<K, V>) tab[index];
for(Entry<K, V> prev = null; e != null; prev = e, e = e.next) {
if((e.hash == hash) && e.key.equals(key)) {
if(prev != null) {
prev.next = e.next;
} else {
tab[index] = e.next;
}
modCount++;
count--;
V oldValue = e.value;
e.value = null;
return oldValue;
}
}
return null;
}
// 移除拥有指定key和value的元素,返回值表示是否移除成功
@Override
public synchronized boolean remove(Object key, Object value) {
Objects.requireNonNull(value);
Entry<?, ?>[] tab = table;
int hash = key.hashCode();
int index = (hash & 0x7FFFFFFF) % tab.length;
@SuppressWarnings("unchecked")
Entry<K, V> e = (Entry<K, V>) tab[index];
for(Entry<K, V> prev = null; e != null; prev = e, e = e.next) {
if((e.hash == hash) && e.key.equals(key) && e.value.equals(value)) {
if(prev != null) {
prev.next = e.next;
} else {
tab[index] = e.next;
}
e.value = null; // clear for gc
modCount++;
count--;
return true;
}
}
return false;
}
/**
* Clears this hashtable so that it contains no keys.
*/
// 清空Hashtable中所有元素
public synchronized void clear() {
Entry<?, ?>[] tab = table;
for(int index = tab.length; --index >= 0; ) {
tab[index] = null;
}
modCount++;
count = 0;
}
/*▲ 移除 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 替换 ████████████████████████████████████████████████████████████████████████████████┓ */
// 将拥有指定key的元素的值替换为newValue,并返回刚刚替换的元素的值(替换失败返回null)
@Override
public synchronized V replace(K key, V newValue) {
Objects.requireNonNull(newValue);
Entry<?, ?>[] tab = table;
int hash = key.hashCode();
int index = (hash & 0x7FFFFFFF) % tab.length;
@SuppressWarnings("unchecked")
Entry<K, V> e = (Entry<K, V>) tab[index];
while(e != null) {
if((e.hash == hash) && e.key.equals(key)) {
V oldValue = e.value;
e.value = newValue;
return oldValue;
}
e = e.next;
}
return null;
}
// 将拥有指定key和oldValue的元素的值替换为newValue,返回值表示是否成功替换
@Override
public synchronized boolean replace(K key, V oldValue, V newValue) {
Objects.requireNonNull(oldValue);
Objects.requireNonNull(newValue);
Entry<?, ?>[] tab = table;
int hash = key.hashCode();
int index = (hash & 0x7FFFFFFF) % tab.length;
@SuppressWarnings("unchecked")
Entry<K, V> e = (Entry<K, V>) tab[index];
while(e != null) {
if((e.hash == hash) && e.key.equals(key)) {
if(e.value.equals(oldValue)) {
e.value = newValue;
return true;
} else {
return false;
}
}
e = e.next;
}
return false;
}
// 替换当前Hashtable中的所有元素,替换策略由function决定,function的入参是元素的key和value,出参作为新值
@SuppressWarnings("unchecked")
@Override
public synchronized void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {
Objects.requireNonNull(function); // explicit check required in case
final int expectedModCount = modCount; // table is empty.
Entry<K, V>[] tab = (Entry<K, V>[]) table;
for(Entry<K, V> entry : tab) {
while(entry != null) {
entry.value = Objects.requireNonNull(function.apply(entry.key, entry.value));
entry = entry.next;
if(expectedModCount != modCount) {
throw new ConcurrentModificationException();
}
}
}
}
/*▲ 替换 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 包含查询 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Tests if the specified object is a key in this hashtable.
*
* @param key possible key
*
* @return {@code true} if and only if the specified object
* is a key in this hashtable, as determined by the
* {@code equals} method; {@code false} otherwise.
*
* @throws NullPointerException if the key is {@code null}
* @see #contains(Object)
*/
// 判断Hashtable中是否存在指定key的元素
public synchronized boolean containsKey(Object key) {
Entry<?, ?>[] tab = table;
int hash = key.hashCode();
int index = (hash & 0x7FFFFFFF) % tab.length;
for(Entry<?, ?> e = tab[index]; e != null; e = e.next) {
if((e.hash == hash) && e.key.equals(key)) {
return true;
}
}
return false;
}
/**
* Returns true if this hashtable maps one or more keys to this value.
*
* <p>Note that this method is identical in functionality to {@link
* #contains contains} (which predates the {@link Map} interface).
*
* @param value value whose presence in this hashtable is to be tested
*
* @return {@code true} if this map maps one or more keys to the
* specified value
*
* @throws NullPointerException if the value is {@code null}
* @since 1.2
*/
// 判断Hashtable中是否存在指定value的元素
public boolean containsValue(Object value) {
return contains(value);
}
/**
* Tests if some key maps into the specified value in this hashtable.
* This operation is more expensive than the {@link #containsKey
* containsKey} method.
*
* <p>Note that this method is identical in functionality to
* {@link #containsValue containsValue}, (which is part of the
* {@link Map} interface in the collections framework).
*
* @param value a value to search for
* @return {@code true} if and only if some key maps to the
* {@code value} argument in this hashtable as
* determined by the {@code equals} method;
* {@code false} otherwise.
* @exception NullPointerException if the value is {@code null}
*/
// 判断Hashtable中是否存在指定value的元素
public synchronized boolean contains(Object value) {
if (value == null) {
throw new NullPointerException();
}
Entry<?,?> tab[] = table;
int i = tab.length;
while(i-- > 0) {
for (Entry<?,?> e = tab[i] ; e != null ; e = e.next) {
if (e.value.equals(value)) {
return true;
}
}
}
return false;
}
/*▲ 包含查询 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 视图 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Returns a {@link Set} view of the keys contained in this map.
* The set is backed by the map, so changes to the map are
* reflected in the set, and vice-versa. If the map is modified
* while an iteration over the set is in progress (except through
* the iterator's own {@code remove} operation), the results of
* the iteration are undefined. The set supports element removal,
* which removes the corresponding mapping from the map, via the
* {@code Iterator.remove}, {@code Set.remove},
* {@code removeAll}, {@code retainAll}, and {@code clear}
* operations. It does not support the {@code add} or {@code addAll}
* operations.
*
* @since 1.2
*/
// 获取Hashtable中key的集合
public Set<K> keySet() {
if(keySet == null) {
// 将已有的Set包装为同步Set(线程安全)
keySet = Collections.synchronizedSet(new KeySet(), this);
}
return keySet;
}
/**
* Returns a {@link Collection} view of the values contained in this map.
* The collection is backed by the map, so changes to the map are
* reflected in the collection, and vice-versa. If the map is
* modified while an iteration over the collection is in progress
* (except through the iterator's own {@code remove} operation),
* the results of the iteration are undefined. The collection
* supports element removal, which removes the corresponding
* mapping from the map, via the {@code Iterator.remove},
* {@code Collection.remove}, {@code removeAll},
* {@code retainAll} and {@code clear} operations. It does not
* support the {@code add} or {@code addAll} operations.
*
* @since 1.2
*/
// 获取Hashtable中value的集合
public Collection<V> values() {
if(values == null) {
// 将已有的容器包装为同步容器(线程安全)
values = Collections.synchronizedCollection(new ValueCollection(), this);
}
return values;
}
/**
* Returns a {@link Set} view of the mappings contained in this map.
* The set is backed by the map, so changes to the map are
* reflected in the set, and vice-versa. If the map is modified
* while an iteration over the set is in progress (except through
* the iterator's own {@code remove} operation, or through the
* {@code setValue} operation on a map entry returned by the
* iterator) the results of the iteration are undefined. The set
* supports element removal, which removes the corresponding
* mapping from the map, via the {@code Iterator.remove},
* {@code Set.remove}, {@code removeAll}, {@code retainAll} and
* {@code clear} operations. It does not support the
* {@code add} or {@code addAll} operations.
*
* @since 1.2
*/
// 获取Hashtable中key-value对的集合
public Set<Map.Entry<K, V>> entrySet() {
if(entrySet == null) {
// 将已有的Set包装为同步Set(线程安全)
entrySet = Collections.synchronizedSet(new EntrySet(), this);
}
return entrySet;
}
/**
* Returns an enumeration of the keys in this hashtable.
* Use the Enumeration methods on the returned object to fetch the keys
* sequentially. If the hashtable is structurally modified while enumerating
* over the keys then the results of enumerating are undefined.
*
* @return an enumeration of the keys in this hashtable.
* @see Enumeration
* @see #elements()
* @see #keySet()
* @see Map
*/
// 返回key的遍历器(不允许删除元素)
public synchronized Enumeration<K> keys() {
return this.<K>getEnumeration(KEYS);
}
/**
* Returns an enumeration of the values in this hashtable.
* Use the Enumeration methods on the returned object to fetch the elements
* sequentially. If the hashtable is structurally modified while enumerating
* over the values then the results of enumerating are undefined.
*
* @return an enumeration of the values in this hashtable.
* @see java.util.Enumeration
* @see #keys()
* @see #values()
* @see Map
*/
// 返回value的遍历器(不允许删除元素)
public synchronized Enumeration<V> elements() {
return this.<V>getEnumeration(VALUES);
}
/*▲ 视图 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 遍历 ████████████████████████████████████████████████████████████████████████████████┓ */
// 遍历当前Map中的元素,并对其应用action操作,action的入参是元素的key和value
@SuppressWarnings("unchecked")
@Override
public synchronized void forEach(BiConsumer<? super K, ? super V> action) {
Objects.requireNonNull(action); // explicit check required in case
// table is empty.
final int expectedModCount = modCount;
Entry<?, ?>[] tab = table;
for(Entry<?, ?> entry : tab) {
while(entry != null) {
action.accept((K) entry.key, (V) entry.value);
entry = entry.next;
if(expectedModCount != modCount) {
throw new ConcurrentModificationException();
}
}
}
}
/*▲ 遍历 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 重新映射 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* {@inheritDoc}
*
* <p>This method will, on a best-effort basis, throw a
* {@link java.util.ConcurrentModificationException} if the remapping
* function modified this map during computation.
*
* @throws ConcurrentModificationException if it is detected that the
* remapping function modified this map
*/
/*
* 插入/删除/替换操作,返回新值(可能为null)
* 此方法的主要意图:使用备用value和旧value创造的新value来更新旧value
*
* 注:以下流程图中,涉及到判断(◇)时,纵向代表【是】,横向代表【否】。此外,使用★代表计算。
*
* ●查找同位元素●
* |
* ↓
* ◇存在同位元素◇ --→ ★新value=备用value★ --→ ■如果新value不为null,【插入】新value■
* | 是 否
* ↓
* ★新value=(旧value, 备用value)★
* |
* ↓
* ◇新value不为null◇ --→ ■【删除】同位元素■
* | 是 否
* ↓
* ■新value【替换】旧value■
*/
@Override
public synchronized V merge(K key, V bakValue, BiFunction<? super V, ? super V, ? extends V> remappingFunction) {
Objects.requireNonNull(remappingFunction);
Entry<?, ?>[] tab = table;
int hash = key.hashCode();
int index = (hash & 0x7FFFFFFF) % tab.length;
@SuppressWarnings("unchecked")
Entry<K, V> e = (Entry<K, V>) tab[index];
// 查找同位元素
for(Entry<K, V> prev = null; e != null; prev = e, e = e.next) {
// 如果存在同位元素
if(e.hash == hash && e.key.equals(key)) {
int mc = modCount;
// 计算新值
V newValue = remappingFunction.apply(e.value, bakValue);
if(mc != modCount) {
throw new ConcurrentModificationException();
}
// 如果新value不为null,则【替换】旧值
if(newValue != null) {
e.value = newValue;
// 如果新value为null,【删除】同位元素
} else {
if(prev != null) {
prev.next = e.next;
} else {
tab[index] = e.next;
}
modCount = mc + 1;
count--;
}
return newValue;
}
}
// 如果不存在同位元素,且备用value(新值)不为null,则直接【插入】
if(bakValue != null) {
// 向table[index]处插入元素(头插法),必要时需要扩容
addEntry(hash, key, bakValue, index);
}
return bakValue;
}
/**
* {@inheritDoc}
*
* <p>This method will, on a best-effort basis, throw a
* {@link java.util.ConcurrentModificationException} if the remapping
* function modified this map during computation.
*
* @throws ConcurrentModificationException if it is detected that the
* remapping function modified this map
*/
/*
* 插入/删除/替换操作,返回新值(可能为null)
* 此方法的主要意图:使用key和旧value创造的新value来更新旧value
*
* 注:以下流程图中,涉及到判断(◇)时,纵向代表【是】,横向代表【否】。此外,使用★代表计算。
*
* ●查找同位元素●
* |
* ↓
* ◇存在同位元素◇ --→ ★新value=(key, null)★
* | 是 否 |
* ↓ |
* ★新value=(key, 旧value)★ |
* ├---------------------------┘
* ↓
* ◇新value不为null◇ --→ ■如果存在同位元素,则【删除】同位元素■
* | 是 否
* ↓
* ■ 存在同位元素,则新value【替换】旧value■
* ■不存在同位元素,则【插入】新value ■
*/
@Override
public synchronized V compute(K key, BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
Objects.requireNonNull(remappingFunction);
Entry<?, ?>[] tab = table;
int hash = key.hashCode();
int index = (hash & 0x7FFFFFFF) % tab.length;
@SuppressWarnings("unchecked")
Entry<K, V> e = (Entry<K, V>) tab[index];
// 查找同位元素
for(Entry<K, V> prev = null; e != null; prev = e, e = e.next) {
// 如果存在同位元素
if(e.hash == hash && Objects.equals(e.key, key)) {
int mc = modCount;
// 计算新值
V newValue = remappingFunction.apply(key, e.value);
if(mc != modCount) {
throw new ConcurrentModificationException();
}
// 如果新value不为null,直接【替换】旧值
if(newValue != null) {
e.value = newValue;
// 如果新value为null,【删除】同位元素
} else {
if(prev != null) {
prev.next = e.next;