-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjavaGenUBEg22.java
41 lines (37 loc) · 952 Bytes
/
javaGenUBEg22.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
public class javaGenUBEg22<T extends Example> {
T value;
public javaGenUBEg22(T value) {
this.value = value;
}
public T getValue() {
return value;
}
public static void main(String[] args) {
javaGenUBEg22<Example> obj = new javaGenUBEg22<>(new Example(10));
System.out.println(obj.getValue());
obj.value.setI(20);
System.out.println(obj.getValue());
System.out.println(obj.value);
System.out.println(obj.getValue());
obj.value.addI(10, 20);
}
}
class Example{
int i;
public Example(int i) {
this.i = i;
}
public int getI() {
return i;
}
public void setI(int i) {
this.i = i;
}
public void addI(int a, int b) {
System.out.println(a+b);
}
@Override
public String toString() {
return "Example [i=" + i + "]";
}
}