Che cos'è il metodo Java System.arraycopy()?
Metodo Java System.arraycopy() Dichiarazione
La dichiarazione del metodo per il metodo java.lang.System.arraycopy() nella classe java.lang è la seguente:
public static void arraycopy(Object src, int srcIndex, Object dest, int destIndex, int len)
Parametri
Di seguito sono riportati i parametri del metodo arraycopy :-
src : è l'array di origine.
-
srcIndex : è l'indice iniziale dell'array di origine.
-
dest : è l'array di destinazione.
-
destIndex : è l'indice iniziale dell'array di destinazione.
-
len : è il numero di elementi che devono essere copiati dall'array di origine all'array di destinazione.
Funzionalità
Il metodo arraycopy copia i dati da src , a partire da srcIndex fino a srcIndex +( len - 1) elementi, nell'array dest in destIndex fino a destIndex + ( len - 1).Valore di ritorno
Il metodo arraycopy ha un tipo di ritorno void , il che significa che non restituisce nulla.Esempio
public class Example {
public static void main(String[] args) {
String[] src = { "Monday","Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"};
String[] dest = { "January", "February", "March", "April", "May", "June", "July", "August"};
int srcIndex = 2;
int destIndex = 3;
int len = 2;
//print number of elements that need to be copied
//from the source to the destination array
System.out.println("len : " + len);
//print source index
System.out.println("srcIndex : " + srcIndex);
//print elements of the source array
System.out.print("src : ");
for (int i = 0; i < src.length; i++)
System.out.print(src[i] + " ");
System.out.println("");
//print destination index
System.out.println("destIndex : " + destIndex);
//print elements of the destination array
System.out.print("dest : ");
for (int i = 0; i < dest.length; i++)
System.out.print(dest[i] + " ");
System.out.println("");
// Use of arraycopy() method
System.arraycopy(src, srcIndex, dest, destIndex, len);
// this method copies the 'len' no of elements
// from the src array to the dest array using the srcIndex
// and destIndex as reference points in both the arrays
// Print elements of destination after
System.out.print("final destination array : ");
for (int i = 0; i < dest.length; i++)
System.out.print(dest[i] + " ");
}
}
Produzione
len : 2 srcIndex : 2 src : lunedì martedì mercoledì giovedì venerdì sabato domenica destIndex : 3 dest : gennaio febbraio marzo aprile maggio giugno luglio agosto array di destinazione finale : gennaio febbraio marzo mercoledì giovedì giugno luglio agosto
Esempio di modifica dei parametri
// Example of changing parameters
srcIndex = 4;
destIndex = 5;
len = 1;
Produzione
len : 1 srcIndex : 4 src : lunedì martedì mercoledì giovedì venerdì sabato domenica destIndex : 5 dest : gennaio febbraio marzo aprile maggio giugno luglio agosto array di destinazione finale : gennaio febbraio marzo aprile maggio venerdì luglio agosto
GO TO FULL VERSION