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 5960937
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T18:53:43+00:00 2026-05-22T18:53:43+00:00

Are all primitive wrapper classes in Java immutable objects? String is immutable. What are

  • 0

Are all primitive wrapper classes in Java immutable objects? String is immutable. What are the other immutable objects?

  • 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-05-22T18:53:44+00:00Added an answer on May 22, 2026 at 6:53 pm

    Any type which doesn’t give you any means to change the data within it is immutable – it’s as simple as that. Yes, all the primitive wrapper types are immutable1, as is String. UUID, URL and URI are other examples.

    Although Calendar and Date in the built-in Java API are mutable, many of the types within Joda Time are immutable – and to my mind, this is one reason why Joda Time is easier to work with. If an object is immutable, you can keep a reference to it somewhere else in your code and not have to worry about whether or not some other piece of code is going to make changes – it’s easier to reason about your code.


    1 by which I mean java.lang.Integer etc. As noted elsewhere, the Atomic* classes are mutable, and indeed have to be in order to serve their purpose. There’s a difference in my mind between “the standard set of primitive wrapper classes” and “the set of classes which wrap primitive values”.

    You can write your own mutable wrapper class very easily:

    public class MutableInteger
    {
        private int value;
    
        public MutableInteger(int value) 
        {
             this.value = value;
        }
    
        public int getValue()
        {
            return value;
        }
    
        public void setValue(int value)
        {
            this.value = value;
        }
    }
    

    So as you can see, there’s nothing inherently immutable about wrapper classes – it’s just that the standard ones were designed to be immutable, by virtue of not providing any way to change the wrapped value.

    Note that this allows for the same object to be used repeatedly when boxing, for common values:

    Integer x = 100;
    Integer y = 100;
    // x and y are actually guaranteed to refer to the same object
    
    Integer a = 1000;
    Integer b = 1000;
    // a and b *could* refer to the same object, but probably won't
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given that all the primitive data types and objects have memory allocated, it is
In c, are primitive data types such as int long char unsigned... all macros?
All throughout an application wherever error messages (or other user messages) are used I
I am wondering about the benefits of having the string-type immutable from the programmers
I have a model that has several properties. The properties can be primitive (String)
Is it possible to extend primitive types such as System.String and System.Int32 (IE: integer)
In designing a solution, sometimes it may be convenient to provide wrapper classes for
I need to provide a user a list of all primitive types available and
When implementing reference counting in objects the release and possibly delete object primitive is
I am wondering how one can search for all primitive float values that match

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.