标签:log string tools out pl2 interface 使用 eric str
泛型实现了参数化类型的概念,使代码可以应用于多种类型。
声明的泛型类型静态方法不能使用
class Tools<T>{ private T t; public void set(T t){ this.t = t; } public T get(){ return this.t; } }
class GenericTest2<T>{ //使用类定义的泛型 public void print1(T t){ System.out.println("print1:"+t); } //使用方法定义的泛型 public <E> void print2(E e){ System.out.println("print2:"+e); } //静态方法不能使用类定义的泛型 public static <E> void print3(E e){ System.out.println("print3:"+e); } }
//泛型接口 interface Inter<T>{ void show(T t); } // class InterImpl2 implements Inter<String>{ public void show(String t) { System.out.println("show:"+t); } } // class InterImpl<T> implements Inter<T>{ public void show(T t){ System.out.println("show:"+t); } } class GenericDemo5{ public static void main(String[] args){ InterImpl<Integer> i = new InterImpl<Integer>(); i.show(5); //InterImpl i = new InterImpl(); //i.show("liu"); } }
HashSet<? extends Person> set = new HashSet<? extends Person>(); //限定存储Person或Person子类的对象 HashSet<? super Person> set = new HashSet<? super Person>(); //限定存储Person或Person父类的对象
标签:log string tools out pl2 interface 使用 eric str
原文地址:http://www.cnblogs.com/lhat/p/6168895.html