1. 程式人生 > >數組小知識點

數組小知識點

最小值 新的 arr turn 最小 origin 什麽 copy static

public static int[] copyOf(int[] original, int newLength) {
int[] copy(目標數組) = new int[newLength(數組長度)];
System.arraycopy(original(原數組), 0(從原數組什麽位置開始拷貝), copy(拷貝), 0(從目標數組什麽位置開始放),

//Math.min(original.length, newLength):長度,取最小值,原數組和新數組那個新的和原數組

Math.min(original.length, newLength));
return copy;
}

數組小知識點