-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJavaGenMUB17.java
39 lines (29 loc) · 926 Bytes
/
JavaGenMUB17.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
import java.util.NavigableSet;
import java.util.Set;
import java.util.TreeSet;
public class JavaGenMUB17<T extends Set<Number> & NavigableSet<Number>> {
T value;
public JavaGenMUB17(T value) {
this.value = value;
}
public T getValue() {
return value;
}
public void setValue(T value) {
this.value = value;
}
public static void main(String[] args) {
TreeSet<Number> map = new TreeSet<>();
JavaGenMUB17<TreeSet<Number>> obj = new JavaGenMUB17<>(map);
obj.getValue().add(1);
obj.getValue().add(2);
obj.getValue().add(3);
obj.getValue().add(4);
System.out.println(obj.getValue());
obj.setValue(map);
obj.getValue().add(1.02f);
obj.getValue().add(2.02009);
obj.getValue().add(3);
System.out.println(obj.getValue());
}
}