Home > Java > Javagetting Started > body text

What is the difference between Int and Integer in Java?

王林
Release: 2020-07-08 16:49:03
forward
4064 people have browsed it

What is the difference between Int and Integer in Java?

The differences are as follows:

(Recommended learning: Getting Started with Java)

1. Int is a basic type and can store numerical values ​​directly. ; and integer is a reference data type.

2. The declaration of Int does not require instantiation, and the initial value after the variable is declared is 0; Integer is a class with an initial value of null and needs to be instantiated before the variable data can be processed.

3. The Integer class is a packaging class of int. In actual development, Integer is regarded as an object and can perform data conversion and other operations.

Example:

        Integer num1 = 200;   
        Integer num2 = 200;           
        System.out.println("num1==num2: "+(num1==num2));                    
        Integer num3 = 100;   
        Integer num4 = 100;   
        System.out.println("num3==num4: "+(num3==num4));
Copy after login

Output result:

num1==num2:false
num3==num4:true
Copy after login

(Video tutorial recommendation: java video tutorial)

Analysis:

First of all, we must clarify the difference between the equal method and ==:

equals() compares whether the values ​​(contents) of the two objects are the same.

"==" compares whether the references (memory addresses) of two objects are the same, and is also used to compare whether the variable values ​​of two basic data types are equal.

java definition: During automatic boxing, for values ​​​​from –128 to 127, after they are boxed into Integer objects, they will be stored in memory and reused. There will always be only one object and if it exceeds If the value between –128 and 127 is specified, the boxed Integer object will not be reused, which is equivalent to creating a new Integer object each time it is boxed;

The above is the detailed content of What is the difference between Int and Integer in Java?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.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