I am wondering if there is a way to create arrays in java based on a variable amount. So if I needed to create 10 arrays a loop would make 10(all named sequentially). But if I did not need 10 arrays the loop would create and many as needed.
I am envisioning something like this:
for(i=0 up to i=imax)
create arrayi
where i is the variable in the for loop.
If imax is set to 3 it would produce: array0,array1,array2,array3
thanks.