Answers for "how to clone array in java"

3

copy array in java

int[] src  = new int[]{1,2,3,4,5};
int[] dest = new int[5];

System.arraycopy( src, 0, dest, 0, src.length );
Posted by: Guest on May-03-2020
5

java copy array

int[] a = {1,2,3,4,5};
int[] b = Arrays.copyOf(a, a.length);
Posted by: Guest on April-25-2020
6

how to make a copy of an array java

int a[] = {1, 8, 3}; 
  
// Copy elements of a[] to b[] 
int b[] = a.clone();
Posted by: Guest on May-15-2020
0

how to copy array in java

// method 
public static int [] copyArray(int [] arr){
      int [] copyArr = new int[arr.length];
      for (int i = 0; i < copyArr.length; i++){
            copyArr[i] = arr[i];
       }
      return copyArr;
}

// Arrays. method 
int[] copyCat = Arrays.copyOf(arr, arr.length);

// System 
System.arraycopy(x,0,y,0,5); // 5 is array's length 

// clone 
y = x.clone();
Posted by: Guest on August-01-2020
0

how to clone array in java

// A Java program to demonstrate array copy using clone()
public class Test {
    public static void main(String[] args)
    {
        int a[] = { 1, 8, 3 };
        int b[] = a.clone();
    }
}
Posted by: Guest on March-18-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language