码迷,mamicode.com
首页 > 其他好文 > 详细

泛型定义在接口上

时间:2016-05-01 23:07:37      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

/*泛型定义在接口上
 *
 * */

package 泛型;


interface Inter<T>{
    void show(T t);
}
//第一种方式
class InterImpl implements Inter<String>{

    public void show(String t) {
        System.out.println("show:"+t);
    }
    
}
//第二种方式
class InterImpl2<T> implements Inter<T>{

    public void show(T t) {
        System.out.println("show:"+t);
        
    }
    
}

public class GenericDemo2 {
    public static void main(String[] args) {
        InterImpl i = new InterImpl();
        i.show("haha");
        
        InterImpl2<Integer> i2 = new InterImpl2<Integer>();
        i2.show(4);
    }
}

泛型定义在接口上

标签:

原文地址:http://www.cnblogs.com/gongxueliang1989/p/5451388.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!