Page 1014 - AP Computer Science A, 7th edition
P. 1014

21. (B) The type parameter in a generic ArrayList must be a class type, not a primitive. Declaration II would be correct if it w ere
List<Integer> intList = new ArrayList<Integer>();

































































































   1012   1013   1014   1015   1016