Maison  >  Article  >  Java  >  Comment copier un tableau en Java

Comment copier un tableau en Java

WBOY
WBOYavant
2023-04-29 22:22:171359parcourir

Copie du tableau

Premier type :

  把一个数组的值拷贝到另一个数组
 public static int[] copyArray(int[] array){
        int[] copy = new int[array.length];
        for (int i = 0; i <array.length ; i++) {
            copy[i] = array[i];
        }
        return copy;
    }
 
    public static void main(String[] args) {
        int[] array = {1,4,6,3,8,9};
        int[] ret = copyArray(array);
        System.out.println(Arrays.toString(ret));
 
 
    }

Résultat de l'impression :

Comment copier un tableau en Java

Deuxième type :

Fonction de copie du tableau (lui-même)

Comment copier un tableau en Java

Résultat de l'impression :

Comment copier un tableau en Java

Vous pouvez également multiplier par longueur 2. Mais au lieu de l'étendre 2 fois sur la base d'origine, voici un nouvel objet

Comment copier un tableau en Java

fonction de copie du tableau (une partie de) :

Comment copier un tableau en Java

Tous les codes sources en Java de et vers sont fermés à gauche Intervalle ouvert à droite

Le troisième type :

Comment copier un tableau en Java

Résultat de l'impression :

Comment copier un tableau en Java

La quatrième copie :

Comment copier un tableau en Java

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer