-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjavaGenericsSet14.java
204 lines (162 loc) · 5.45 KB
/
javaGenericsSet14.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
import java.util.HashSet;
import java.util.Iterator;
import java.util.Scanner;
import java.util.Spliterator;
public class javaGenericsSet14<T> {
static Scanner sc;
HashSet<T> set = new HashSet<>();
T[] data;
javaGenericsSet14(int capacity) {
data = (T[]) new Integer[capacity];
}
public void gen(HashSet<T> set, T[] arr) {
this.set = set;
//add Element
for (int i = 0; i < arr.length; i++) {
set.add(arr[i]);
}
System.out.println(set);
//remove
set.remove(1);
System.out.println(set);
//clear
set.clear();
System.out.println(set);
if(set.isEmpty()){
addElement();
}
//clone
HashSet<T> cloneSet = (HashSet<T>) set.clone();
System.out.println(cloneSet);
//Iterator
Iterator<T> iterator = set.iterator();
while (iterator.hasNext()){
System.out.println(iterator.next());
}
//forEachRemaining
iterator.forEachRemaining(System.out::println);
set.iterator().forEachRemaining((T s) -> {
System.out.println(s);
});
//CompareTo
try {
Iterator<T> iterator1 = set.iterator();
Iterator<T> iterator2 = cloneSet.iterator();
while (iterator1.hasNext() && iterator2.hasNext()) {
int comparison = ((Integer) iterator1.next()).compareTo((Integer) iterator2.next());
System.out.println(comparison);
}
}
catch (Exception e) {
System.out.println("Exception");
}
System.out.println(set);
//iterator.remove
try {
Iterator<T> iterator3 = set.iterator();
T s ;
sc = new Scanner(System.in);
System.out.println("Enter the value to remove:");
int value = sc.nextInt();
while (iterator3.hasNext()) {
s = iterator3.next();
if (s.equals(value)) {
iterator3.remove();
}
}
System.out.println(set);
}
catch (Exception e) {
System.out.println("Exception");
}
// [Union]AddAll
set.addAll(cloneSet);
System.out.println(set);
// [Intersection] retainAll
set.retainAll(cloneSet);
System.out.println(set);
//Spliterator
Spliterator<T> numbers = set.spliterator();
numbers.forEachRemaining((n) -> System.out.println("Numbers:" + n));
//Contains
Boolean b = set.contains(2);
System.out.println(b);
//Size
int size = set.size();
System.out.println(size);
//isEmpty
Boolean c = set.isEmpty();
System.out.println(c);
//containsAll
Boolean d = set.containsAll(cloneSet);
System.out.println(d);
//removeIf
set.removeIf((T s) -> s.equals(2));
System.out.println(set);
//stream
set.stream().forEach((T s) -> System.out.println(s));
System.out.println("\n");
//parallelStream
set.parallelStream().forEach((T s) -> System.out.println(s));
System.out.println("\n");
//toArray
Object[] arr1 = set.toArray();
for (Object o : arr1) {
System.out.println("Num:"+o);
}
for(int i=0;i<arr1.length;i++){
System.out.println("Num:" + i+"="+arr1[i]);
}
//toArray(T[] a)
T[] arr2 = (T[]) new Integer[set.size()];
arr2 = set.toArray(arr2);
for (T o : arr2) {
System.out.println("NumInt:"+o);
}
for(int i=0;i<arr2.length;i++){
System.out.println("NumberInteger:" + i+"="+arr2[i]);
}
//equals
Boolean e = set.equals(cloneSet);
System.out.println(e);
//toString
String str = set.toString();
System.out.println(str);
//hashCode
int hash = set.hashCode();
System.out.println(hash);
//removeAll
set.removeAll(cloneSet);
System.out.println(set);
}
void addElement(){
sc = new Scanner(System.in);
System.out.println("Enter the capacity of the array:");
int capacity = sc.nextInt();
javaGenericsSet14<Integer> setDemo = new javaGenericsSet14<>(capacity);
for (int i = 0; i < setDemo.data.length; i++) {
System.out.println("index:" + i + " value:");
setDemo.data[i] = sc.nextInt();
}
addEl(data);
}
//add element
void addEl(T[] arr){
for (int i = 0; i < arr.length; i++) {
set.add(arr[i]);
}
System.out.println(set);
}
public static void main(String[] args) {
sc = new Scanner(System.in);
System.out.println("Enter the capacity of the array:");
int capacity = sc.nextInt();
javaGenericsSet14<Integer> setDemo = new javaGenericsSet14<>(capacity);
for (int i = 0; i < setDemo.data.length; i++) {
System.out.println("index:" + i + " value:");
setDemo.data[i] = sc.nextInt();
}
setDemo.gen(setDemo.set, setDemo.data);
System.out.println(setDemo.set);
}
}