Why does this code print false?
I've tried the code below as well as using the somea.equals(somea2);
method and still i get false. how are these two arrays different?
int[] somea = {2};
int[] somea2 = {2};
System.out.println(somea==somea2);
false
what could possibly be going wrong?