I would like to hold information in a finite number of
Arraylists
. The number of lists ill never change, just the contents.
So, what I was wondering was if there is a way to construct an array of arraylists.
tried this:
ArrayList<Card>[] cards = new ArrayList<Card>()[13];
thanks