Answers for "how to copy elements from one array to another in java"

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

Code answers related to "how to copy elements from one array to another in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language