What is the syntax for making a List of arrays in Java?
I have tried the following:
List<int[]> A = new List<int[]>();
and a lot of other things.
I need to be able to reorder the int arrays, but the elements of the int arrays need not to be changed. If this is not possible, why?
Thank you.
List, as it's an interface. Do you want list of arrays, or are you fine with list of lists? – birryree Nov 30 '11 at 6:29