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

數組復制

nbsp class 使用 copy light arraycopy irb for method

復制數組時,使用System.arraycop()方法,其原方法:

public static void arraycopy(Object src,int srcPos,Object dest,int destPos,int length)

src:源數組;

srcPos:源數組要復制的起始位置;

dest:目的數組;

destPos:目的數組放置的起始位置;

length:復制的長度。

註意:src and dest都必須是同類型或者可以進行轉換類型的數組.

public class irb 
{ 
    void method () { 
        int[] array1 = new int [100]; 
        for (int i = 0; i < array1.length; i++) { 
            array1 [i] = i; 
        } 
        int[] array2 = new int [100]; 
        system.arraycopy(array1, 0, array2, 0, 100); 
    } 
} 

  

數組復制