public static <W>void printCollection(Collection<W> str)
{
Iterator<W> it = str.iterator();
while (it.hasNext()) {
System.out.println(it.next().toString());
}
System.out.println("*********");
}
//使用通配符的:
public static void printCollection(Collection<?> str)
{
Iterator<?> it = str.iterator();
while (it.hasNext()) {
System.out.println(it.next().toString());
}
System.out.println("*********");
}
这两个有什么具体的区别?貌似效果都是一样的
|
|