Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8739633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T10:58:29+00:00 2026-06-13T10:58:29+00:00

I am not able to understand how the Java Constant Pool for Integer works.

  • 0

I am not able to understand how the Java Constant Pool for Integer works.

I understand the behavior of Strings, and hence able to justify myself that it is the same case with Integer Constants also.

So, for Integers

Integer i1 = 127;
Integer i2 = 127;
System.out.println(i1==i2); // True

&

Integer i1 = new Integer(127);
Integer i2 = new Integer(127);
System.out.println(i1==i2); // False

Till here everything goes in my head.

What I am not able to digest is, it behaves differently when I increase the integer from 127. This behavior changes after 127, below is the code snippet

Integer i1 = 128;
Integer i2 = 128;
System.out.println(i1==i2); // False. WHY?????

Can somebody help me understand this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T10:58:30+00:00Added an answer on June 13, 2026 at 10:58 am

    No, the constant pool for numbers doesn’t work the same way as for strings. For strings, only compile-time constants are interned – whereas for the wrapper types for integer types, any boxing operation will always use the pool if it’s applicable for that value. So for example:

    int x = 10;
    int y = x + 1;
    Integer z = y; // Not a compile-time constant!
    Integer constant = 11;
    System.out.println(z == constant); // true; reference comparison
    

    The JLS guarantees a small range of pooled values, but implementations can use a wider range if they wish.

    Note that although it’s not guaranteed, every implementation I’ve looked at uses Integer.valueOf to perform boxing operations – so you can get the same effect without the language’s help:

    Integer x = Integer.valueOf(100);
    Integer y = Integer.valueOf(100);
    System.out.println(x == y); // true
    

    From section 5.1.7 of the JLS:

    If the value p being boxed is true, false, a byte, or a char in the range \u0000 to \u007f, or an int or short number between -128 and 127 (inclusive), then let r1 and r2 be the results of any two boxing conversions of p. It is always the case that r1 == r2.

    Ideally, boxing a given primitive value p, would always yield an identical reference. In practice, this may not be feasible using existing implementation techniques. The rules above are a pragmatic compromise. The final clause above requires that certain common values always be boxed into indistinguishable objects. The implementation may cache these, lazily or eagerly. For other values, this formulation disallows any assumptions about the identity of the boxed values on the programmer’s part. This would allow (but not require) sharing of some or all of these references.

    This ensures that in most common cases, the behavior will be the desired one, without imposing an undue performance penalty, especially on small devices. Less memory-limited implementations might, for example, cache all char and short values, as well as int and long values in the range of -32K to +32K.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Being new to Java, I am not able to understand the complete build process
I don't understand how prepareEditor works, I'm not able set visibility rules for prepareRenderer
I am not able to understand how to rotate the image. I am trying
I am not able to understand few things on the Garbage collection. Firstly, how
I'm not able to understand the difference between Thread vs ThreadPool. Consider i've to
I have a legacy script which I am not able to understand. The script
I am relatively a new Android developer and I am not able to understand
I have tried a lot but not been able to understand the steps involved
I dont understand why I am not able to update a field on the
I am not able to find actual differences between these two Java EE servers.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.