import java.util.ArrayList;
import java.util.Collection;
public class Test11 {
public static void main(String[] args)
{
ArrayList<Integer> arrL = new ArrayList();
arrL.add(1);
print(arrL);
}
public static <T> void print(Collection<T> col)
{
for(T temp : col)
{
System.out.println(temp);
}
}
}
把指定参数类型的Collection传进去也好使啊,那么通配符有什么用,求举例解惑 |