Home > Java > javaTutorial > body text

Solving problems encountered when comparing Java package classes

黄舟
Release: 2017-09-29 10:20:32
Original
1765 people have browsed it

The function of the so-called packaging class is to convert the original data type into a reference data type. The following article mainly introduces to you the solutions to the problems encountered when comparing Java packaging classes. Detailed examples are given in the article. Friends who need it can refer to the code. Let’s take a look together.

Preface

This article mainly introduces solutions to some problems encountered when comparing Java packaging classes, and shares them for future reference. Please refer to it for reference and study. I won’t say much more below. Let’s take a look at the detailed introduction.

Example 1:


##

  Integer a = 1;
  Integer b = 2;
  Integer c = 3;
  Integer d = 3;
  Integer e= 321;
  Integer f= 321;
  Long g = 3L;
  System.out.println(c == d); //1
  System.out.println(e == f); //2
  System.out.println(c == (a+b)); //3 
  System.out.println(c.equals(a+b));//4
  System.out.println(g == (a+b)); //5
  System.out.println(g.equals(a+b)); //6
Copy after login

Output result


true
false
true
true
true
false
Copy after login

1. Packaging class comparison will not automatically unpack, but there will be a cache in Integer to store numbers from -128 to 127, so the address values ​​of c and d are the same.


2. Address value comparison, cache is not used


3. When '==', automatic unpacking occurs on the right side, so the int value is actually in Compare


4. When a+b is unpacked into int, pass in the equals method of Integer for automatic packaging. Within the equals method is value comparison.


5. It will be unpacked into basic data types for comparison


6. The equals of the packaging class will determine the type,

Long.equals(Object object) determines that the type does not match and returns false.

Example 2:

##

  Long a = 1L;
  Integer b = 1;
  System.out.println(a.equals(1)); //7
  System.out.println(a.equals(1L));
  System.out.println(a.equals(b));
Copy after login

Output

false
true
false
Copy after login

Looking at the source code of the packaging class, you will find that when comparing, it will first determine whether the types are the same.


7.

a.equals(1)

, int 1 is packed into Integer, which is naturally a different type from Long.

 public boolean equals(Object obj) {
  if (obj instanceof Long) {
   return value == ((Long)obj).longValue();
  }
  return false;
 }
Copy after login

Summary:
When using automatic unpacking/packing, packaging Comparison between classes does not automatically unpack, it is an address comparison, and there is caching that will affect the results.


When comparing using the equals method of the wrapper class, since the wrapper class does not automatically convert the type, when the types are different, even if the values ​​are the same, false will be returned. Therefore, when comparing values ​​with wrapper classes, do not use '=='. When using the equals method, pay attention to the same type, or directly use the basic data type for comparison.

The above is the detailed content of Solving problems encountered when comparing Java package classes. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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