“Cómo copiar la matriz en Java” Código de respuesta

Matriz de clones en Java

		int a[] = { 1, 8, 3 };
        // Copying elements of a[] to b[]
        int b[] = a.clone()
Uptight Unicorn

matriz de copia de Java

int[] a = {1,2,3,4,5};
int[] b = Arrays.copyOf(a, a.length);
T-Rex

Cómo copiar la matriz en 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(); 
icy_milktea27

Matriz de clones en Java

public static int[] copyOfRange​(int[] original, int from, int to)
Uptight Unicorn

Matriz de clones en Java

public static int[] copyOf​(int[] original, int newLength)
Uptight Unicorn

Matriz de clones en Java

public static void arraycopy(Object src, int srcPos, Object dest, 
                             int destPos, int length)
Uptight Unicorn

Respuestas similares a “Cómo copiar la matriz en Java”

Preguntas similares a “Cómo copiar la matriz en Java”

Más respuestas relacionadas con “Cómo copiar la matriz en Java” en Java

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código