Java Array Copy copyArray(Object source, Object dest, int count)

Here you can find the source of copyArray(Object source, Object dest, int count)

Description

Convenience wrapper for System.arraycopy().

License

Open Source License

Declaration

public static void copyArray(Object source, Object dest, int count) 

Method Source Code

//package com.java2s;

public class Main {
    /**/*from www  .j  a  v  a  2 s .com*/
     * Convenience wrapper for System.arraycopy().
     */
    public static void copyArray(Object source, Object dest, int count) {
        System.arraycopy(source, 0, dest, 0, count);
    }
}

Related

  1. copyArray(int[][] arr)
  2. copyArray(int[][] links, int rowNum, int columnNum)
  3. copyArray(int[][] src)
  4. copyArray(int[][][] data)
  5. copyArray(long[] array)
  6. copyArray(Object[] array)
  7. copyArray(Object[] array, int from, int to)
  8. copyArray(Object[] from, Object[] to)
  9. copyArray(String[] array)