-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestMain.java
45 lines (45 loc) · 1.11 KB
/
TestMain.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
//
// public static void main(String[] args) {
//
// HashMapSet<Integer> set1 = new HashMapSet<>();
// HashMapSet<Integer> set2 = new HashMapSet<>();
// HashMapSet<Integer> set3 = new HashMapSet<>();
// HashMapSet<Integer> set4 = new HashMapSet<>();
//
// for(int i=0; i<20; i++){
// set1.add(i);
// set2.add(i*2);
// set3.add(i*3);
// set4.add(i);
// }
//
// for(Integer i: set1) System.out.print(i+" ");
// System.out.println();
//
// for(Integer i: set2) System.out.print(i+" ");
// System.out.println();
//
// for(Integer i: set3) System.out.print(i+" ");
// System.out.println();
//
// set1.addAll(set4);
//
// for(Integer i: set1) System.out.print(i+" ");
// System.out.println();
//
// set1.retainAll(set2);
//
// for(Integer i: set1) System.out.print(i+" ");
// System.out.println();
//
// set1.addAll(set2);
//
// for(Integer i: set1) System.out.print(i+" ");
// System.out.println();
//
// set1.removeAll(set3);
//
// for(Integer i: set1)
// System.out.print(i+" ");
//}
//