Here you can find the source of deepCopy(int[] array)
public static int[] deepCopy(int[] array)
//package com.java2s; //License from project: Open Source License public class Main { public static int[] deepCopy(int[] array) { int[] copy = new int[array.length]; for (int i = 0; i < array.length; i++) { copy[i] = array[i];// w w w .j a v a 2s . co m } return copy; } }