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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T03:05:41+00:00 2026-05-20T03:05:41+00:00

Thread 1: is executing this loop while(running) { // Do Task() } println(Done); Thread

  • 0

Thread 1: is executing this loop

while(running) {
// Do Task()
} 
println("Done");

Thread 2 sets running false
In case running is a volatile variable, thread1 comes out of the loop and prints “Done”.

My question is if running is not volatile, when does Thread1 reads running variable from the main memory ?

Note: Well i know the happens before relationship about synchronization and volatile variable but the thread 1 does stops even if running is not volatile or synchronized. So my question is when does Thread 1 decides to read from the main memory given that NO SYNCHRONIZATION or and NO VOLATILE

  • 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-20T03:05:42+00:00Added an answer on May 20, 2026 at 3:05 am

    This is described in the JLS under the section Threads and Locks.

    When the thread is required to read from main memory is defined in terms of the synchronization order and happens before order. Basically it says that in order for a read to yield the value that was last written, the write needs to happen-before the read.

    The happens-before relation is roughly speaking defined in terms of locking/unlocking actions and (with a few exceptions) boils down to the usage of synchronized methods and blocks. Unless you’re dealing with volatile variables, the bottom line is usually that you need to synchronize all access to shared data, preferably through AtomicBoolean, a BlockingQueue or some other java.util.concurrent class.

    17.4.4 Synchronization Order

    Every execution has a synchronization order. A synchronization order is a total order over all of the synchronization actions of an execution. For each thread t, the synchronization order of the synchronization actions (§17.4.2) in t is consistent with the program order (§17.4.3) of t.

    Synchronization actions induce the synchronized-with relation on actions, defined as follows:

    • An unlock action on monitor m synchronizes-with all subsequent lock actions on m (where subsequent is defined according to the synchronization order).
    • A write to a volatile variable (§8.3.1.4) v synchronizes-with all subsequent reads of v by any thread (where subsequent is defined according to the synchronization order).
    • An action that starts a thread synchronizes-with the first action in the thread it starts.
    • The write of the default value (zero, false or null) to each variable synchronizes-with the first action in every thread. Although it may seem a little strange to write a default value to a variable before the object containing the variable is allocated, conceptually every object is created at the start of the program with its default initialized values.
    • The final action in a thread T1 synchronizes-with any action in another thread T2 that detects that T1 has terminated. T2 may accomplish this by calling T1.isAlive() or T1.join().
    • If thread T1 interrupts thread T2, the interrupt by T1 synchronizes-with any point where any other thread (including T2) determines that T2 has been interrupted (by having an InterruptedException thrown or by invoking Thread.interrupted or Thread.isInterrupted).

    The source of a synchronizes-with edge is called a release, and the destination is called an acquire.

    17.4.5 Happens-before Order

    Two actions can be ordered by a happens-before relationship. If one action happens-before another, then the first is visible to and ordered before the second.

    If we have two actions x and y, we write hb(x, y) to indicate that x happens-before y.

    • If x and y are actions of the same thread and x comes before y in program order, then hb(x, y).
    • There is a happens-before edge from the end of a constructor of an object to the start of a finalizer (§12.6) for that object.
    • If an action x synchronizes-with a following action y, then we also have hb(x, y).
    • If hb(x, y) and hb(y, z), then hb(x, z).

    It should be noted that the presence of a happens-before relationship between two actions does not necessarily imply that they have to take place in that order in an implementation. If the reordering produces results consistent with a legal execution, it is not illegal.


    Update: If no happens-before relation exists, the thread is never ever required to “refresh its cache”. This question and it’s accepted answer provides a concrete example of this.

    Here is an slightly modified version of the accepted answer:

    public class Test {
    
        static boolean keepRunning = true;
    
        public static void main(String[] args) throws InterruptedException {
    
            (new Thread() {
                public void run() {
                    while (keepRunning) {
                    }
                }
            }).start();
    
            System.out.println(keepRunning);
            Thread.sleep(1000);
            keepRunning = false;
            System.out.println(keepRunning);
    
            // main thread ends here, but the while-thread keeps running.
            // (but not if you change the keepRunning to volatile).
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Without: ATL MFC Note: Client is executing in a different thread to that of
I was browsing this thread , which has good recommendation but a bit too
Application has an auxiliary thread. This thread is not meant to run all the
In this thread, we look at examples of good uses of goto in C
I have a SwingWorker thread with an IOBound task which is totally locking up
I have a thread that appends rows to self.output and a loop that runs
Can Thread.getContextClassLoader() be null ? The javadoc is not really clear. Should a library
When launching a thread or a process in .NET or Java, is there a
I have one thread that writes results into a Queue. In another thread (GUI),
Is Bouncy Castle API Thread Safe ? Especially, org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher org.bouncycastle.crypto.paddings.PKCS7Padding org.bouncycastle.crypto.engines.AESFastEngine org.bouncycastle.crypto.modes.CBCBlockCipher I am

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.