-4
看到這個程序代碼:給垃圾值
公共類RemoveTest {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.print(remove(new int[] {1, 2, 3, 4}));
}
static int [] remove(int[] a){
int[] b = new int[a.length - 1];
System.arraycopy(a, 1, b, 0, a.length - 1);
return b;
}
}
,但給垃圾輸出。我正在Eclipse IDE上嘗試它
這不是垃圾,這就是對象的打印方式。你期待什麼樣的結果? – kviiri