Java Array Copy arraycopy(Object[] src, int srcPos, Object[] dest, int destPos, int length)

Here you can find the source of arraycopy(Object[] src, int srcPos, Object[] dest, int destPos, int length)

Description

arraycopy

License

Open Source License

Declaration

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

Method Source Code

//package com.java2s;
/*/*from  w  ww .  j  a v  a 2  s .c  om*/
 * Copyright (c) 2014, 2016 Oracle and/or its affiliates. All rights reserved. This
 * code is released under a tri EPL/GPL/LGPL license. You can use it,
 * redistribute it and/or modify it under the terms of the:
 *
 * Eclipse Public License version 1.0
 * GNU General Public License version 2
 * GNU Lesser General Public License version 2.1
 */

public class Main {
    public static void arraycopy(Object[] src, int srcPos, Object[] dest, int destPos, int length) {
        System.arraycopy(src, srcPos, dest, destPos, length);
    }
}

Related

  1. arraycopy(long[] src, int srcPos, long[] dest, int destPos, int length)
  2. arraycopy(Object dest, Object src1, int length1, Object src2, int length2)
  3. arrayCopy(Object src, int srcPos, Object dest, int destPos, int length)
  4. arraycopy(Object src, int srcPos, Object dest, int destPos, int length)
  5. arrayCopy(Object[] source, Object[] target, int size)
  6. arraycopy(String[] src)
  7. arrayCopy(String[][] src, int src_position, String[][] dst, int dst_position, int length)
  8. arraycopy(T[] a)
  9. arrayCopy(T[] objs)