Can anyone help me to understand the number of objects created with the below snippet:
int[][] a= new int[4][3]; //with this line first.
And, secondly if I re-initialize a
with:
a = new int[3][7]; //finally with this line also.
Also, let me know if there is any tool to check the number of objects created in my complete application.