- class Demo
- {
- public static void printColl(ArrayList<?> al){
- Iterator<?> it = al.iterator();
- while(it.hasNext()){
- System.out.println(it.next());
- }
- }
- }
- class Demo1
- {
- public static <T> void printColl1(ArrayList<T> al){
- Iterator<T> it = al.iterator();
- while(it.hasNext()){
- System.out.println(it.next());
- }
- }
- }
复制代码 类型通配符<?>与泛型<T>在这里实现的功能是差不多,但是究竟有什么样的区别,以及一些扩展的应用,还是不怎么清楚。麻烦请讲的具体一点。
|