1. 程式人生 > >數組復制方法

數組復制方法

元素 logs 返回 src 副本 arrays original pyo size


1.System方法
語法:public static void arraycopy(
object src.
int srcpot.
object deat.
int destpos.
int length)
參數:src---原數組
srcpot--原數組的起始位置
deat--目標數組
destpos--目標數組的起始位置
length--要復制的數組元素的數量

System.Arrayscopy(src)

2.Arrays方法
語法:int [] copy of(int[] original,int newlength)
參數: original--要復制的數據
newlength--要返回的副本長度

Arrays.copyof( original newlength)

數組復制方法