Example analysis of visibility problem of Java variables
Question: Can synchorized and sleep also achieve the purpose of volatile thread visibility? The general problem description is as follows:
package com.test;
import java.util.concurrent.TimeUnit;
public class test1 {
private static boolean is = true;
public static void main(String[] args) {
new Thread(new Runnable() {
@Override
public void run() {
int i = 0;
while(test1.is){
i ;
1 //synchronized (this) { } will forcefully refresh the variable value of the main memory to the thread stack?
2 //System.out.println("1"); println is synchronized and will force the variable value of the main memory to be refreshed to the thread stack?
3 //sleep will reload the value of the main memory?
// try {
// TimeUnit.MICROSECONDS.sleep(1);
// }catch (InterruptedException e) {
// e.printStackTrace();
// }
}
}
}).start();
try {
TimeUnit.SECONDS.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
}
new Thread(new Runnable() {
@Override
public void run() {
is = false; //Set is to false so that the above thread ends the while loop
}
}).start();
}
}
Q: Why doesn't the entire program terminate? Why does the program terminate when you uncomment any of the code blocks (1, 2, 3)? Will synchronized forcefully refresh the memory variable values to the thread stack? What will sleep do?
Involving knowledge explanation
volatile: This keyword ensures the visibility of variables in threads. All threads accessing variables modified by volatile must read from the main memory before operating, and write back to the main memory immediately after the working memory is modified, ensuring that other threads Visibility, the keyword with the same effect is final.
synchronized: All synchronization operations must ensure 1. Atomicity and 2. Visibility, so changes that occur in the synchronized block will be immediately written back to the main memory
sleep: This method will only give up CPU execution time and will not release the lock.
problem analysis
Q1: Why does the program not terminate after commenting the code?
A1: Because the variable value of boolean is=true is loaded into its own working memory by the previous thread (referred to as thread A), after the subsequent thread (referred to as thread B) changes boolean is=false, it may not be written to the main memory immediately (but In this question, it should be written to the main memory immediately, because the thread will exit after executing is=false). Even if it is written to the main memory immediately, thread A may not be loaded into the working memory immediately, so the program continues Won't it terminate? This is what most of us think of, but in fact, the JVM has been optimized to a large extent for the current hardware level, basically ensuring the timely synchronization of working memory and main memory to a large extent, which is equivalent to using volatile by default. But only to the maximum extent! When CPU resources are always occupied, the synchronization between the working memory and the main memory, that is, the visibility of variables will not be so timely! The conclusion will be verified later.
Q2: Why does the program terminate when you uncomment any code block (1, 2, 3)?
A2: The codes with line numbers 1 and 2 have a common feature, that is, they all involve synchronized synchronization locks. So, as the question author guessed, will synchronized forcefully refresh the variable values in the main memory to the thread stack? , and the sleep method will also refresh the variable values in the main memory to the thread stack? In fact, we said earlier that synchronized will only ensure the visibility of variables in the synchronized block, and the is variable is not in the synchronized block, so it is obviously not caused by this. Next we add the following code after code i;:
for(int k=0;k<100000;k ){
new Object();
}
If you run it again, the program will terminate immediately! Why? In A1 above, we have said that even with JVM optimization, when the CPU is always occupied, the visibility of the data cannot be well guaranteed, just like the above program keeps looping to do i; the operation occupies the CPU. And why does the program stop after adding the above code? Because for a large number of new Object() operations, the CPU is no longer the main time-consuming operation. The real time-consuming should be in the allocation of memory (because the processing speed of the CPU is obviously faster than the memory, otherwise there would be no CPU registers. ), so after the CPU is idle, it will follow the JVM optimization benchmark to ensure the visibility of data as quickly as possible, thereby synchronizing the is variable from the main memory to the working memory, eventually leading to the end of the program. This is why the sleep() method does not involve synchronization operations. , but the program can still be terminated, because the sleep() method will release the CPU but not the lock!
The above is the detailed content of Example analysis of visibility problem of Java variables. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Guide to Square Root in Java. Here we discuss how Square Root works in Java with example and its code implementation respectively.

Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Guide to Random Number Generator in Java. Here we discuss Functions in Java with examples and two different Generators with ther examples.

Guide to the Armstrong Number in Java. Here we discuss an introduction to Armstrong's number in java along with some of the code.

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is
