search
HomeJavajavaTutorialHow to assign values ​​between arrays in Java

The array name is the address of the *** element pointed to by the head pointer of the array. If you can understand it this way, then think about it with your thighs and you will know that a=b cannot realize the assignment of the array. Generally in C and C we A loop is used to assign a single value, similar to this:

  1. for(int i=0;i

  2. a[i]=b[i];

way to achieve it, after learning C and C for so long, I use it more , and I don’t find it troublesome. But in JAVA, C is not the same as C. JAVA is very smart. It can use a=b to assign b to a. Pay attention to the assignment here. When using a=b in JAVA, in a When the content is output in the form of an array, it is exactly the same as the content of b, which shows that this method is feasible. This is how it is used in my program, but a bug results. At first I found that no matter whether I use a=b or a=a.clone(); the result is the same, which was a little confusing, but now I understand it completely. In order to illustrate this problem, let's demonstrate with a program:

private int[] subResources(int[] aa, int[] bb)  {     // 做减法     int []a=aa;     int []b=bb;     for (int i = 0; i <p> This is used to implement a function that wants to subtract two arrays. Use the above two methods in the calling program </p><pre class="brush:php;toolbar:false">int []allo=pcb0.getAllocation().clone(); //方式1   //int []allo=pcb0.getAllocation()//方式2     int[] allocation = this.addResources(allo, request);

The different results brought about by passing in parameters are that when you modify the value of the passed in parameter in the function addResources, method 1 cannot change the original data, but method 2 can change the original data. When assigning value in method 1, it first creates a copy of the array, and then assigns the copy to the target array. In this way, the address of the copy array is certainly not the same as the address of the original array, so no matter how you change it, method 1 will not Will change the original data, but method 2 is different. Method 2 directly assigns the address of the data to the target data. In this way, the different array names of the two arrays actually refer to the same address, so of course the original value can be changed. .

Analyzed in this way, it is a bit like the pointer and reference value in function parameter passing in C. Since pointers are abandoned in Java, all pointing relationships use reference types. It takes a long time to use C It's easy to make such mistakes. It is not like passing value addResources (int *a,int *b) or addResources (int a[],int b[]) like in C. This will be a disadvantage. It seems that this is the only time in this place in my life. I have to focus more on learning. Now I understand why the basic questions at the job fair seem simple, but not everyone can answer them well.

The above is the detailed content of How to assign values ​​between arrays in Java. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log?How does IntelliJ IDEA identify the port number of a Spring Boot project without outputting a log?Apr 19, 2025 pm 11:45 PM

Start Spring using IntelliJIDEAUltimate version...

How to elegantly obtain entity class variable names to build database query conditions?How to elegantly obtain entity class variable names to build database query conditions?Apr 19, 2025 pm 11:42 PM

When using MyBatis-Plus or other ORM frameworks for database operations, it is often necessary to construct query conditions based on the attribute name of the entity class. If you manually every time...

How to use the Redis cache solution to efficiently realize the requirements of product ranking list?How to use the Redis cache solution to efficiently realize the requirements of product ranking list?Apr 19, 2025 pm 11:36 PM

How does the Redis caching solution realize the requirements of product ranking list? During the development process, we often need to deal with the requirements of rankings, such as displaying a...

How to safely convert Java objects to arrays?How to safely convert Java objects to arrays?Apr 19, 2025 pm 11:33 PM

Conversion of Java Objects and Arrays: In-depth discussion of the risks and correct methods of cast type conversion Many Java beginners will encounter the conversion of an object into an array...

How do I convert names to numbers to implement sorting and maintain consistency in groups?How do I convert names to numbers to implement sorting and maintain consistency in groups?Apr 19, 2025 pm 11:30 PM

Solutions to convert names to numbers to implement sorting In many application scenarios, users may need to sort in groups, especially in one...

E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products?E-commerce platform SKU and SPU database design: How to take into account both user-defined attributes and attributeless products?Apr 19, 2025 pm 11:27 PM

Detailed explanation of the design of SKU and SPU tables on e-commerce platforms This article will discuss the database design issues of SKU and SPU in e-commerce platforms, especially how to deal with user-defined sales...

How to set the default run configuration list of SpringBoot projects in Idea for team members to share?How to set the default run configuration list of SpringBoot projects in Idea for team members to share?Apr 19, 2025 pm 11:24 PM

How to set the SpringBoot project default run configuration list in Idea using IntelliJ...

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.