1. 程式人生 > >java中System.arraycopy方法的使用

java中System.arraycopy方法的使用

1.System.arraycopy

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

可以看出這是一個native方法,我們不討論它是如何實現的,直說應用。

src:源陣列
srcPos:源陣列要複製的起始位置 
dest:目的陣列 
destPos:目的陣列放置的起始位置
length:複製的長度 
注意:src and dest都必須是同類型或者可以進行轉換型別的陣列

舉個栗子:

正常情況:

    @Test
    public void test(){
        String[] str1 = new String[]{"a", "b", "c", "d"};
        String[] str2 = new String[10];
        String[] str3 = new String[10];
        System.arraycopy(str1, 0, str2, 0, str1.length);
        System.arraycopy(str1, 2, str3, 2, str1.length-2);
        for(int i=0;i<str2.length;++i) {
            if (str2[i] != null) {
                System.out.println(str2[i]);
            }
        }
        System.out.println("***********");
        for(int i=0;i<str3.length;++i) {
            if (str3[i] != null) {
                System.out.println(str3[i]);
            }
        }
    }

執行結果:

a
b
c
d
***********
c
d

Process finished with exit code 0

不同型別並且不可以進行轉換:

    @Test
    public void test1(){
        String[] str1 = new String[]{"a", "b", "c", "d"};
        Integer[] int1 = new Integer[10];
        System.arraycopy(str1,0,int1,0,str1.length);
        for(int i=0;i<int1.length;++i) {
            if (int1[i] != null) {
                System.out.println(int1[i]);
            }
        }
    }

執行結果:

java.lang.ArrayStoreException