美文网首页
泛型-接口泛型

泛型-接口泛型

作者: 海边的蜗牛ng | 来源:发表于2018-06-17 15:56 被阅读0次

    Java接口的泛型,常用一共就两种!

    • 第一种在实现接口的子类依旧使用泛型,在实例化的时候在动态添加type
    • 第二种形式,子类实现接口的时候具体化type,在实例化的时候不用再动态添加type
    //接口泛型
    public class MessageTest {
        public static void main(String[] args) {
    
        }
    }
    
    interface Message<T>{
        public void isit(T t);
    }
    class MessageTwo<T> implements Message<T>{//第一种在实现接口的子类依旧使用泛型,在实例化的时候在动态添加type
        public void isit(T t){
            System.out.println(t.toString());
        }
    }
    
    class MessageThree implements Message<String>{//第二种形式,子类实现接口的时候具体化type,在实例化的时候不用再动态添加type
        public void isit(String t){
            System.out.println(t.toString());
        }
    }
    

    相关文章

      网友评论

          本文标题:泛型-接口泛型

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