-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGenHierarchy6.java
50 lines (39 loc) · 1.13 KB
/
GenHierarchy6.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
class Gen3<T>{
T obj;
Gen3(T o){
obj = o;
}
T getObj(){
return obj;
}
}
class Gen4<T> extends Gen3<T>{
Gen4(T o){
super(o);
}
}
class HierDemo{
public static void main(String args[]){
Gen3<Integer> iOb = new Gen3<Integer>(88);
Gen4<Integer> iOb2 = new Gen4<Integer>(99);
Gen4<String> strOb2 = new Gen4<String>("Generics Test");
if(iOb2 instanceof Gen4<Integer>){
System.out.println("iOb2 is instance of Gen4");
}
if (iOb2 instanceof Gen3<Integer>) {
System.out.println("iOb2 is instance of Gen3");
}
if(strOb2 instanceof Gen4<String>){
System.out.println("iOb2 is instance of Gen4");
}
if (strOb2 instanceof Gen3<String>) {
System.out.println("iOb2 is instance of Gen3");
}
if (iOb instanceof Gen3<Integer>) {
System.out.println("iOb2 is instance of Gen3");
}
if (iOb instanceof Gen4<Integer>) {
System.out.println("iOb2 is instance of Gen3");
}
}
}