-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConcurrentSkipListSet3.java
51 lines (38 loc) · 1.2 KB
/
ConcurrentSkipListSet3.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
package ConcurrentSkipListSet;
import java.util.concurrent.ConcurrentSkipListSet;
import java.util.Set;
public class ConcurrentSkipListSet3 {
public static void main(String[] args) {
Set<Float> set = new ConcurrentSkipListSet<>();
set.add(1.09f);
set.add(2.89f);
set.add(3.90f);
set.add(4.98f);
// addAll
Set<Float> set1 = new ConcurrentSkipListSet<>();
set1.addAll(set);
System.out.println(set1);
// containsAll
Boolean b = set.containsAll(set1);
System.out.println(b);
// retainAll
set1.retainAll(set);
System.out.println(set1);
// toArray
Object[] arr = set1.toArray();
for (Object o : arr) {
System.out.println(o);
}
for (int i = 0; i < arr.length; i++) {
System.out.println(arr[i]);
}
// toArray(T[] a)
Float[] arr1 = new Float[set1.size()];
set1.toArray(arr1);
for (int i = 0; i < arr1.length; i++) {
System.out.println(arr1[i]);
}
// hashCode
System.out.println(set1.hashCode());
}
}