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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T13:24:15+00:00 2026-05-12T13:24:15+00:00

This question might appear very simple, but i haven’t found an answer yet, so

  • 0

This question might appear very simple, but i haven’t found an answer yet, so i’m asking the stack overflow community. As the title suggests i have a Class with several getXXX() methods where some of them may return null. This is documented and the user of this class should be aware of this fact.

To simplify the usage of this class, i had the idea to add some handy hasXXX() methods which indicates if specific fields are set or not. First, this seems to be a good idea… but then Thread Safety comes to mind.

Since instances of this class might be shared across threads the values of the properties might change. As we all know check-then-act is only possible if we know that the state will not change after the check-method has been invoked, even if we’re interrupted while doing our check-then-act stuff.

The following solutions came to my mind:

  • Supply the user of this class a way to “lock” the instance for state changes while doing check-then-act code.
  • Remove the hasXXX() methods since they are useless for mutable classes.

I dont find this as a rare case and some SO members might have stubled upon this issue before and found a solution…

Foobaerchen

  • 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-12T13:24:16+00:00Added an answer on May 12, 2026 at 1:24 pm

    There is no need to complicate the matter – the user knows if XXX is not set because getXXX() returns null.

    
    if ( (x=bar.getXXX()) ) {
       x.foo();
    }
    

    is explict

    
    if ( bar.hasXXX() ) {
      bar.getXXX().foo();
    }
    

    leaves what hasXXX really does to the imagination

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

Sidebar

Related Questions

This might be a very simple question for some but I would like to
This question might not seem very technical but, out of curiosity,I want to know
This question might be closed as it sounds vague but I'm really asking this
I know this question might sound quite silly, but I somehow found myself stuck
Ok, very simple question this time (though the answer seems elusive for I can't
This question might belong on one of the other trilogies, but it sorta seemed
I know this question might be little silly but I can't seem to find
I know this question might have already been discussed a thousands of times but
I am aware of this question , but it does not appear to work
I've just started programming with Java, so might appear as silly question, but I

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.