I just took up Java and was wondering. Let's say I have an array (in my case multidimensional) and I wanted to make a copy of it but using a different variable, e.g. I have a boolean array
boolean[][] arrBool = [2][3]
and I wanted to create an int array of the same dimensions
int[][] arrInt= [2][3]
array. What would the simplest way to do this be?
Thanks