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

泛型的上下限定义

时间:2014-08-11 11:34:02      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   ar   new   on   return   public   

class Info<T>{
    private T var;
    public T getVar(){
        return var;
    }
    public void setVar(T var){
        this.var=var;
    }
    public String toString(){
        return this.var.toString();
    }
}
public class GenericsDemo17 {
public static void main(String[] args) {
    Info<Integer> i1=new Info<Integer>();
    Info<Float> i2=new Info<Float>();
    Info<String> i3=new Info<String>();
    i1.setVar(30);
    i2.setVar(30.1f);
    i3.setVar("vonkenmo");
    fun1(i1);
    fun1(i2);
//    fun1(i3);
    fun2(i3);   
}
public static void fun1(Info<? extends Number> i3){
    System.out.println(i3+",");
}
public static void fun2(Info<? super String> i3){
    System.out.println(i3+",");
}
}

泛型的上下限定义,布布扣,bubuko.com

泛型的上下限定义

标签:style   color   os   ar   new   on   return   public   

原文地址:http://www.cnblogs.com/vonk/p/3904113.html

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