search
HomeJavajavaTutorialInteger caching in Java

Integer caching in Java

Sep 21, 2023 pm 10:21 PM
javacacheinteger

Integer caching in Java

Java is one of the most commonly used programming languages ​​today as it includes advanced features and functionality. In every new version of Java, its developers add new features and functionality, and integer caching is a feature introduced in Java 5. In this tutorial, we will understand what is integer cache in Java and its importance in programming. p>

What is integer caching in Java?

From the word "cache", the reader can guess that we are talking about storing an integer in memory and reusing it when needed. Yes, you guessed it. But the question that comes to my mind is why do we need integer cache.

Let us understand how integer caching works and why we need it in Java through sample code.

Example

In the example below, we define the first and second integer variables and initialize them to 100, with a range of -128 to 127. After that, we compare these two variables and based on the comparison result.

Additionally, we define the third and fourth integer variables and initialize them with 130 values ​​that are not in the range -128 to 127. Additionally, we compared them and displayed the resulting values ​​in the output.

import java.io.*;

public class Main {
   public static void main(String[] args) {
      Integer first = 100;
      Integer second = 100;
      
      // It prints true only when both objects have the same reference
      if (first == second) {
         System.out.println("true");
      } else {
         System.out.println("false");
      }
      Integer third = 130;
      Integer fourth = 130;
      if (third == fourth) {
         System.out.println("true");
      } else {
         System.out.println("false");
      }
   }
}

Output

true
false

If we guess the output, both should return "false" output because the "==" operator is used to match references to objects. The "==" operator returns true only if two objects have the same reference. However, if we need to compare object values ​​in Java, we can use equals() method but cannot use '==' operator to match object values.

Thus, it is clarified that "==" returns true when two objects have the same reference, and returns true for a comparison of "first" and "second" objects. This means that the "first" and "second" objects have the same reference.

So, the problem is that 'first', 'second', 'third' and 'fourth' are all integer objects, but it returns true only for comparison of 'first' and 'second', but for 'third' Comparison with "Fourth".

The concept of integer caching is introduced here.

-128 to 127 (inclusive) are the most commonly used integer values. So, when a programmer creates a new integer object with a value in the range -128 to 127, the JVM first checks whether an object with the same value exists in the memory. If so, a reference to the same object is returned. Otherwise, it creates a new object and returns a reference to that object.

Now, it is clear to the programmer why comparing the "first" and "second" objects returns true due to caching.

However, if we create an object using the "new" keyword, it always creates a new object in the memory. Therefore, integer caching does not work in this case.

Integer first = new Integer(13);
Integer second = new Integer(13);

In the above code, the value of the object is between -128 and 127. But when we compare two objects while creating the object using constructor, it returns false.

Benefits of integer caching

  • Memory Optimization - If the object exists, the integer cache will use the same object to store integers between -128 and 127 instead of creating a new object. It saves the memory of the device.

  • Performance - Object creation requires memory allocation and object initialization. Therefore, using existing object creation can improve the performance of your application.

in conclusion

Simply put, the integer cache feature is to cache the most commonly used integer objects in memory for reuse. It improves memory optimization and performance of applications by using existing objects.

The above is the detailed content of Integer caching in Java. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
Java Platform Independence: Compatibility with different OSJava Platform Independence: Compatibility with different OSMay 13, 2025 am 12:11 AM

JavaachievesplatformindependencethroughtheJavaVirtualMachine(JVM),allowingcodetorunondifferentoperatingsystemswithoutmodification.TheJVMcompilesJavacodeintoplatform-independentbytecode,whichittheninterpretsandexecutesonthespecificOS,abstractingawayOS

What features make java still powerfulWhat features make java still powerfulMay 13, 2025 am 12:05 AM

Javaispowerfulduetoitsplatformindependence,object-orientednature,richstandardlibrary,performancecapabilities,andstrongsecurityfeatures.1)PlatformindependenceallowsapplicationstorunonanydevicesupportingJava.2)Object-orientedprogrammingpromotesmodulara

Top Java Features: A Comprehensive Guide for DevelopersTop Java Features: A Comprehensive Guide for DevelopersMay 13, 2025 am 12:04 AM

The top Java functions include: 1) object-oriented programming, supporting polymorphism, improving code flexibility and maintainability; 2) exception handling mechanism, improving code robustness through try-catch-finally blocks; 3) garbage collection, simplifying memory management; 4) generics, enhancing type safety; 5) ambda expressions and functional programming to make the code more concise and expressive; 6) rich standard libraries, providing optimized data structures and algorithms.

Is Java Truly Platform Independent? How 'Write Once, Run Anywhere' WorksIs Java Truly Platform Independent? How 'Write Once, Run Anywhere' WorksMay 13, 2025 am 12:03 AM

JavaisnotentirelyplatformindependentduetoJVMvariationsandnativecodeintegration,butitlargelyupholdsitsWORApromise.1)JavacompilestobytecoderunbytheJVM,allowingcross-platformexecution.2)However,eachplatformrequiresaspecificJVM,anddifferencesinJVMimpleme

Demystifying the JVM: Your Key to Understanding Java ExecutionDemystifying the JVM: Your Key to Understanding Java ExecutionMay 13, 2025 am 12:02 AM

TheJavaVirtualMachine(JVM)isanabstractcomputingmachinecrucialforJavaexecutionasitrunsJavabytecode,enablingthe"writeonce,runanywhere"capability.TheJVM'skeycomponentsinclude:1)ClassLoader,whichloads,links,andinitializesclasses;2)RuntimeDataAr

Is java still a good language based on new features?Is java still a good language based on new features?May 12, 2025 am 12:12 AM

Javaremainsagoodlanguageduetoitscontinuousevolutionandrobustecosystem.1)Lambdaexpressionsenhancecodereadabilityandenablefunctionalprogramming.2)Streamsallowforefficientdataprocessing,particularlywithlargedatasets.3)ThemodularsystemintroducedinJava9im

What Makes Java Great? Key Features and BenefitsWhat Makes Java Great? Key Features and BenefitsMay 12, 2025 am 12:11 AM

Javaisgreatduetoitsplatformindependence,robustOOPsupport,extensivelibraries,andstrongcommunity.1)PlatformindependenceviaJVMallowscodetorunonvariousplatforms.2)OOPfeatureslikeencapsulation,inheritance,andpolymorphismenablemodularandscalablecode.3)Rich

Top 5 Java Features: Examples and ExplanationsTop 5 Java Features: Examples and ExplanationsMay 12, 2025 am 12:09 AM

The five major features of Java are polymorphism, Lambda expressions, StreamsAPI, generics and exception handling. 1. Polymorphism allows objects of different classes to be used as objects of common base classes. 2. Lambda expressions make the code more concise, especially suitable for handling collections and streams. 3.StreamsAPI efficiently processes large data sets and supports declarative operations. 4. Generics provide type safety and reusability, and type errors are caught during compilation. 5. Exception handling helps handle errors elegantly and write reliable software.

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 Article

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

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),

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor