EDIT: it is necessary for this to be a series of 1d Arrays. 2d Arrays / Arraylists can be used but the end result has to be in a series of 1d Arrays. Putting this into a 2d structure will just leave me with the same issue. (converting every row of the 2d array/list into a seperate array that is originally named (ideally consecutive integers after some string, such as Arr0, Arr1....as shown in the example).
I am looking for code for autogenerating arrays (of the same type; int[])
The code below hopefully shows what I am trying to accomplish:
for(int i=0; i<1000; i++) {
int[] Arr"i" = new int[(200)];
for(int j=0; j<200; j++) {
Arr"i"[j] = j;
}
}
So in the end I would have 1000 arrays named Arr0, Arr1, Arr2.....Arr999 and each of them would be filled with values of 0-199 in the respective index.
(they will all have different data, this is just a simple example to display my problem).
Is there any way to do this? I am still fairly new to java and it seems any possible solution to do this is a tad out of my league so to speak.
Thanks for any assistance