android System.arraycopy()或者Arrays.copyof()

public void ConcatTest() {// 测试concat拼接
        String s = "gu";
        s = s.concat(" hello");//
        System.out.println(s);
    }
    //拷贝数组 System.arraycopy()或者Arrays.copyof()区别
    @Test
    public void CopyArrayTest() {
        int[] arr = { 1, 2, 3, 4, 5 };
        int[] copied=new int[10];
        
        System.arraycopy(arr, 1, copied, 0, 4);
        System.out.println(Arrays.toString(copied));
        
        int[] ar=Arrays.copyOf(arr, 10);
        System.out.println(Arrays.toString(ar));
    }

你可能感兴趣的:(移动开发)