Generics and Collection (2)
摘要:Integer is a subtype of NumberDouble is a subtype of NumberArrayList is a subtype of ListList is a subtype of CollectionCollection is a subtype of Ite...
阅读全文
Generics and Collection (1)
摘要:1 public static void main(String args[]) { 2 List ints = Arrays.asList(new Integer[]{new Integer(1), new Integer(3)}); 3 int s =0; 4 ...
阅读全文