package All.D13.Generic_;
public class Demon03 {
public static void main(String[] args) {
}
}
class Father<T>{
T t;
public Father(T t){
this.t=t;
}
}
interface TestInterface<E>{
}
class Child<T,E>extends Father<T>implements TestInterface<E>{
public Child(T t) {
super(t);
}
}
网友评论