How come in java we cannot do:
List> aList = new ArrayList>();
Even though thi
List> aList = new ArrayList>(); aList.add(new ArrayList());