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