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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T20:11:26+00:00 2026-05-24T20:11:26+00:00

Should it be all fields, including super-fields, of a purposely immutable java class ‘final’

  • 0

Should it be all fields, including super-fields, of a purposely immutable java class ‘final’ in order to be thread-safe or is it enough to have no modifier methods?

Suppose I have a POJO with non-final fields where all fields are type of some immutable class. This POJO has getters-setters, and a constructor which sets some initial value. If I extend this POJO with knocking out modifier methods, thus making it immutable, will extension class be thread-safe?

  • 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-24T20:11:27+00:00Added an answer on May 24, 2026 at 8:11 pm

    In order to use an effectively immutable object without final fields in a thread safe manner you need to use one of safe publication idioms when making the object available to other threads after initialization, otherwise these threads can see the object in partially initialized state (from Java Concurrency in Practice):

    • Initializing an object reference from a static initializer;
    • Storing a reference to it into a volatile field or AtomicReference;
    • Storing a reference to it into a final field of a properly constructed object; or
    • Storing a reference to it into a field that is properly guarded by a lock.

    Declaring fields of your immutable object as final releases this restriction (i.e. it guarantees that if other threads see a reference to the object, they also see its final fields in fully initialized state). However, in general case it doesn’t guarantee that other threads can see a reference to the object as soon as it was published, so you may still need to use safe publication to ensure it.

    Note that if your object implements an interface, you can use an approach used by Collections.unmodifiableList(), etc:

    class ImmutableFooWrapper implements IFoo {
        private final IFoo delegate; // final provides safe publication automatically
    
        public ImmutableFooWrapper(IFoo delegate) {
            this.delegate = delegate;
        }
        ...
    }
    
    public IFoo immutableFoo(IFoo foo) {
        return new ImmutableFooWrapper(foo);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Should all structs and classes be declared in the header file? If I declare
I have a few links that should all open in the same window or
Are primitives worth keeping? Should all the deprecated stuff be deleted? Do we need
When you log out of a web app, should ALL your session be logged
As Jeff Atwood asked : "What’s your logging philosophy? Should all code be littered
The script below should open all the files inside the folder 'pruebaba' recursively but
I know that I should put all the html elements in body tag, but
How can I specify a td tag should span all columns (when the exact
The following line in my C program should provided All/Group/Owner read and write permissions
Let's say I've a string 12345 I should obtain all subsequence combinations of this

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.