美文网首页
继承泛型类和泛型接口学习

继承泛型类和泛型接口学习

作者: 哈迪斯Java | 来源:发表于2021-11-26 09:30 被阅读0次
    image.png image.png

    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);
    }
    }

    相关文章

      网友评论

          本文标题:继承泛型类和泛型接口学习

          本文链接:https://www.haomeiwen.com/subject/imwatrtx.html