الرجوع
تسجيل الدخول

Output?

int[][] a = new int[][] {{1, 2},{3, 4, 5},{0}};
int[][] b = a;

b = null;
System.out.println(a.length);