黑马程序员技术交流社区

标题: 泛型通配符与泛型类的区别 [打印本页]

作者: 高志鹏    时间: 2012-12-6 15:17
标题: 泛型通配符与泛型类的区别
  1. class Demo
  2. {
  3.         public static void printColl(ArrayList<?> al){
  4.                 Iterator<?> it = al.iterator();
  5.                 while(it.hasNext()){
  6.                         System.out.println(it.next());
  7.                 }
  8.         }
  9. }
  10. class Demo1
  11. {
  12.         public static <T> void printColl1(ArrayList<T> al){
  13.                 Iterator<T> it = al.iterator();
  14.                 while(it.hasNext()){
  15.                         System.out.println(it.next());
  16.                 }
  17.         }
  18. }
复制代码
类型通配符<?>与泛型<T>在这里实现的功能是差不多,但是究竟有什么样的区别,以及一些扩展的应用,还是不怎么清楚。麻烦请讲的具体一点。





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2