写泛型的小结真不会,自己讲不清楚,就贴个代码吧
- package com.cn.reviev;
- import java.util.*;
- class Foo{}
- //泛型类
- class UtilGen<Foo>{
- private Foo foo;
- public void show(Foo foo){} //泛型作为参数
- public Foo get(){return foo;}//泛型作为返回值
- public <T> void foo1(T t){//泛型方法(与类上定义的泛型无关)
-
- }
- public static <T> void foo2(T t){//静态泛型方法,不可以访问类上的泛型,只能将泛型定义在方法上
-
- }
- }
- public class Generics {
- public static void main(String[] args) {
- List<String> lstr=new ArrayList<String>();
- List<Integer> lint=new ArrayList<Integer>();
- lstr.add("asdf");
- lint.add(1000);
- show(lstr);
- show(lint);
- }
- //泛型限定: ? extends/super XX
- static void show(List<?> lt){//或者写成 static <T> void show(List<T> lt)
- Iterator<?>it=lt.iterator();
- while(it.hasNext()){
- System.out.println(it.next());
- }
- }
-
- }
复制代码 |
|