Making 100 ArrayList's
in
Programming Questions
•
1 years ago
I want to make 100 ArrayLists, why doesn't this work?!
for (int i = 0; i < 100; i = i+1) {
ArrayList myArrayList(i) = new ArrayList();
}
I keep getting error messages, can't work out why this won't work! Any help would be greatly appreciated. :)
1