Home > Java > javaTutorial > Java understands array copy through underlying source code

Java understands array copy through underlying source code

WBOY
Release: 2022-07-22 16:42:59
forward
1831 people have browsed it

This article brings you relevant knowledge about java. It mainly introduces the detailed analysis of understanding array copy through the underlying original code, including loop copying of array, Arrays.copyOf method, Arrays.copyofRange method and so on, let’s take a look at it together, I hope it will be helpful to everyone.

Java understands array copy through underlying source code

Recommended study: "java video tutorial"

Loop to copy the array

Use the loop to copy the array Copying is very simple, just use a loop to assign the elements of the array to be copied to the new array one by one. The specific code implementation is as follows:

public static void main(String[] args) {
        int[] arr = {1,2,3,4,5};
        int[] copy = new int[arr.length];
        for (int i = 0; i < arr.length; i++) {
            copy[i] = arr[i];
        }
    }
Copy after login

This is the method we generally think of. Here are some more convenient methods provided by JAVA for us.

Arrays.copyOf method

Because I am copying an integer array, I use the Arrays.copyOf method of copying an integer array. Arrays of other types can also be copied, not just integer arrays.

Let’s explain the Arrays.copyOf method by copying an integer array. Let’s first take a look at the underlying original code of the Arrays.copyOf method:

public static int[] copyOf(int[] original, int newLength) {
        int[] copy = new int[newLength];
        System.arraycopy(original, 0, copy, 0,
                         Math.min(original.length, newLength));
        return copy;
    }
Copy after login

We can see the Array.copyOf method The return value is an integer array, and the formal parameter has two parameters, one is an integer array, and the other is an integer variable.

The integer array in the formal parameter is the name of the array we want to copy

The integer variable in the formal parameter is the length of the array we want to copy

Because there is a return value, so when we use the Arrays.copyOf method, we need an array to receive the return value. The code is implemented as follows:

public static void main(String[] args) {
        int[] arr = {1,2,3,4,5};
        int[] copy =Arrays.copyOf(arr,arr.length);
    }
Copy after login

Note: The length of the copy can exceed the length of the array to be copied. If it exceeds the length of the array to be copied, the value of the extra element will be 0; for example: I want to copy arr array, but the size of the arr array is 5. If I change arr.length*2 when copying, then the size of the copied array becomes 10, and the value of 6~10 elements is 0. This is also considered expansion. .

Arrays.copyofRange method

If we want to copy part of a partial array, we can use the Arrays.copyRange method. The same as above, we also use copying an integer array to explain. Let’s first take a look at its underlying original code:

public static int[] copyOfRange(int[] original, int from, int to) {
        int newLength = to - from;
        if (newLength < 0)
            throw new IllegalArgumentException(from + " > " + to);
        int[] copy = new int[newLength];
        System.arraycopy(original, from, copy, 0,
                         Math.min(original.length - from, newLength));
        return copy;
    }
Copy after login

We can see from the original code of Arrays.copyRange that the return value is an integer array, and The formal parameter is an integer array and two integer variables.

The integer array in the formal parameter is the array name of the array to be copied.

The two integer variables from and to in the formal parameter are the range of the array elements you want to copy. Pay attention to this. The range is [form, to), which is closed on the left and open on the right, excluding the element at the position of to. The code is implemented as follows:

public static void main(String[] args) {
        int[] arr = {1,2,3,4,5};
        int[] copy = Arrays.copyOfRange(arr,1,3);
    }
Copy after login

Note: The array subscript starts from 0, and the elements from 1 to 3 refer to 2, 3, and 4. But the right side is an open interval, so 4 is not included, so copy this The array knowledge copies the two elements 2 and 3.

System.arraycopy method

Then let’s talk about the System.arraycopy method. In fact, careful students have discovered that there is a System.arraycopy method in the original code of the previous two methods. Their bottom layer is also implemented by the System.arraycopy method. Let’s take a look at its underlying original code first

public static native void arraycopy(Object src,  int  srcPos,
                                        Object dest, int destPos,
                                        int length);
Copy after login

System.arraycopy cannot see the original code implemented. The reason is that native, its underlying layer is C/C to achieve. But the advantage of the native method is that it executes very quickly. The code is implemented as follows:

public static void main(String[] args) {
        int[] arr = {1,2,3,4,5};
        int[] copy = new int[arr.length];
        System.arraycopy(arr,0,copy,0,arr.length);
    }
Copy after login

At this time, the entire array of arr is copied. If you want to make a partial copy, you can complete the partial copy by changing the formal parameters.

clone method

Finally One is the array name.clone method. You only need to understand this method. The code is implemented as follows:

public static void main(String[] args) {
        int[] arr = {1,2,3,4,5};
        int[] copy = arr.clone();
    }
Copy after login

The copy is completed. This method mainly produces a copy of the object, but the address is still different.

Recommended study: "java video tutorial"

The above is the detailed content of Java understands array copy through underlying source code. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:jb51.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template