So I'm having trouble finding out how to link 2 final arrays. Something like this:
final String[] array1 = new String[4];
final String[] array2 = new String[4];
array1 = array2;
But because both arrays are final, I can't do what I've done in the example above. Is there any way I can set array1 to array2, so that any changes made to array1 will be reflected into array2 automatically?
Thanks in advance.