int[] a = new int[0];
int[] b;
이거랑

그리고
int[] a = new int[0];
int[] b = a.clone();

위에서 a와 b는 다른 상태일라나

다르면 어떻게 다른지 알고싶음..

그리고

밑에는 clone이니까 같은상태인가?