Array of ArrayLists
in
Programming Questions
•
2 years ago
is something like this possible?
ArrayList<Sample>[] samples = new ArrayList<Sample>()[0];
class Sample{
Sample(){
}
}
Or is this really stupid?
And a arrayList that holds an ArrayList, is that a strange thing to do?
1