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

  • Home
  • SEARCH
  • 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 7162937
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T13:49:01+00:00 2026-05-28T13:49:01+00:00

There are immutable types in Java. And if you pass an immutable object to

  • 0

There are immutable types in Java. And if you pass an immutable object to a method, it won’t be changed after calling that method even if it’s value was changed in that method. I know that all primitives are immutable. And String is immutable too.
I wrote a simple code for checking that functionality in Java and it seems that wrapper classes for primitives are immutable too. Can anybody list all immutable types in java?

  • 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-28T13:49:02+00:00Added an answer on May 28, 2026 at 1:49 pm

    it won’t be changed after calling that method even if it’s value was changed in that method

    has nothing to do with immutable.

    void change(SomeType st) {
        st.setValue(123); 
    }
    

    will change the real thing. While

    void change(SomeType st) {
        st = new SomeType(123);
    }
    

    won’t. The difference here is whether you are changing the reference or operating on the object referenced.

    String and those wrapper class are called immutable because there is absolutely no member function like setValue that could change that object.

    Hope you understand this. You may comment and ask freely if you have any more doubt.

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

Sidebar

Related Questions

I have some classes that represent immutable objects (Quantity, Price, Probability). Is there some
I have a type with about 40 properties (all value types) that represents a
It seems to me there is an extreme lack of safe, immutable collection types
Is there way to map immutable Value objects like email address using JPA? @Immutable
I know that Strings are immutable. Then, what is the difference between: String name
there is an immutable class: Scope<Cmp extends Comparable<Cmp>> public Scope<Cmp> crop(Scope<Cmp> scope) { ...
Is there a way to convert (wrap) a mutable Map to immutable in O(1)
There is a conversion process that is needed when migrating Visual Studio 2005 web
Ok, as I understand it, immutable types are inherently thread safe or so I've
Is it possible to use immutable types as configuration properties with .NET's configuration API?

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.