According to vnportnoy the syntax
GenSet<Integer> intSet[] = new GenSet[3];creates an array of null references, to be filled as
for (int i = 0; i < 3; i++){ intSet[i] = new GenSet<Integer>();}which is type safe.
According to vnportnoy the syntax
GenSet<Integer> intSet[] = new GenSet[3];creates an array of null references, to be filled as
for (int i = 0; i < 3; i++){ intSet[i] = new GenSet<Integer>();}which is type safe.