Home > Java > javaTutorial > body text

How to Create a Deep Copy of a Two-Dimensional Array in Java?

DDD
Release: 2024-11-01 06:18:02
Original
389 people have browsed it

How to Create a Deep Copy of a Two-Dimensional Array in Java?

Copying Two-Dimensional Arrays in Java

Copying multidimensional arrays in Java can be tricky, as assigning one array to another simply creates a reference to the original data rather than a true copy. To create a genuine duplicate, you need to allocate new memory and copy the elements individually.

In your case, you have two methods, old() and keepold(), to copy the current array into old and vice versa. However, when you update current, the changes are also reflected in old because they both reference the same underlying data.

To create a true copy, you can use the following steps:

  1. Create a New Array: Allocate a new two-dimensional array with the same dimensions as the original.
  2. Copy the Elements: Iterate through the original array and assign each element to the corresponding position in the new array.

Using streams API (Java 8 ), you can simplify this process:

<code class="java">int[][] copy = Arrays.stream(matrix).map(int[]::clone).toArray(int[][]::new);</code>
Copy after login

This line uses the map() method to create a new array for each row, then the clone() method to copy each row, and finally the toArray() method to create a new two-dimensional array from the cloned rows.

The above is the detailed content of How to Create a Deep Copy of a Two-Dimensional Array in Java?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!