SE450: Type Erasure [66/86] |
public class ArrayList
{
public Object get(int i) { . . . }
public Object set(int i, Object newValue) { . . . }
. . .
private Object[] elementData;
}
public static Comparable getMax(ArrayList a)
// E extends Comparable<? super E> erased to Comparable