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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T09:56:39+00:00 2026-05-20T09:56:39+00:00

Suppose the following singleton: public class Test{ private static volatile Test test = null;

  • 0

Suppose the following singleton:

public class Test{
    private static volatile Test test = null;
    private static int test_int = 0;
    private static String test_string = "test";

    public int getInt(){
       return test_int;
    }

    public String getString(){
        return test_string;
    }

    private static Test getInstance(){
         if(test == null){
             synchronized(Test.class){
                if(test == null)
                    test = new Test();
             }
         }
    }

By declaring the singleton instance Test to be volatile are test_int and test_string also considered to be volatile or must they be declared as such? I want to think that by making the class itself Volatile then everything under that class would be volatile as well … however I am not sure about this. Thanks ahead of time.

  • 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-20T09:56:40+00:00Added an answer on May 20, 2026 at 9:56 am

    No, they aren’t considered to be volatile. Only the test variable is volatile. After the value of test has been obtained (via getInstance) its volatility is irrelevant to the rest of the client’s behaviour.

    Personally I would consider using AtomicInteger and AtomicReference instead of volatile, to be honest. I don’t know about anyone else, but I find volatile behaviour hard to reason about reliably.

    Note that your probably don’t want your test_int and test_string variables to be static…

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

Sidebar

Related Questions

Suppose I've got the following program: namespace ReflectionTest { public class Example { private
Suppose I have following string: String asd = this is test ass this is
Suppose I have the following code: class some_class{}; some_class some_function() { return some_class(); }
Suppose you have the following string: white sand, tall waves, warm sun It's easy
Suppose I have the following declaration: class Over1 { protected: class Under1 { };
Suppose I have the following C code. unsigned int u = 1234; int i
I have the following problem: Suppose I have some basic counter class Counter .
Suppose I have the following tables: CREATE TABLE Game ( GameID INT UNSIGNED NOT
Suppose there is the following code: foreach (...) { List<int> localList = new List<int>(100);
Suppose the following: >>> s = set([1, 2, 3]) How do I get a

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.