search
HomeJavajavaTutorialThe use and precautions of volatile keyword in Java
The use and precautions of volatile keyword in JavaJul 30, 2017 am 10:14 AM
javavolatileKeywords

This article mainly introduces the relevant information about the use of java volatile keyword and precautions. When a variable is declared as volatile, the java memory model ensures that all threads using the variable can see the same and consistent value. . , friends in need can refer to

java volatile keyword usage and precautions

What is the volatile keyword

## The #volatile keyword plays an important role in multi-threaded programs. When multiple threads operate on the same variable, each thread will have a local cache copy of that variable. Therefore, when a thread modifies the value of this variable, it actually modifies the variable value in its local cache. Instead of the variable value in main memory, other threads operating this variable do not know that the value of this variable has been changed. In order to avoid this situation, we can declare this variable with the volatile keyword. After declaring this variable with volatile, the variable will not be saved in the local cache, but in the main memory. When a thread modifies its value, it will The updated value will be updated to the main memory, and then other threads can access the updated value. When a variable is declared volatile, the Java memory model ensures that all threads using the variable see the same, consistent value.

Use the volatile keyword

First, create the VolatileData class, the code is as follows:


public class VolatileData {

  //声明为volatile类型
  private volatile int counter = 0;

  /**
  * 返回counter变量的值
  * @return
  */
  public int getCounter() {
    return counter;
  }

  /**
  * 自增counter变量的值
  */
  public void increaseCounter() {
    ++counter;
  }
}

Next create VolatileThread class, the code is as follows:


public class VolatileThread extends Thread {
  private final VolatileData volatileData;

  public VolatileThread(VolatileData volatileData) {
    this.volatileData = volatileData;
  }

  /**
  * 调用VolatileData类中的两个方法,进行取值和自增操作
  */
  @Override
  public void run() {
    int oldValue = volatileData.getCounter();
    System.out.println("[Thread " + Thread.currentThread().getId() + "]: Old value = " + oldValue);
    volatileData.increaseCounter();
    int newValue = volatileData.getCounter();
    System.out.println("[Thread " + Thread.currentThread().getId() + "]: New value = " + newValue);
  }
 }

Finally, create the VolatileMain class to test the above program, the code is as follows:


public class VolatileMain {

  private final static int TOTAL_THREADS = 2;

  public static void main(String[] args) throws InterruptedException {
    VolatileData volatileData = new VolatileData();

    Thread[] threads = new Thread[TOTAL_THREADS];
    for(int i = 0; i < TOTAL_THREADS; ++i)
      threads[i] = new VolatileThread(volatileData);

    //开始读取变量值的操作
    for(int i = 0; i < TOTAL_THREADS; ++i)
      threads[i].start();

    //等待所有线程操作终止
    for(int i = 0; i < TOTAL_THREADS; ++i)
      threads[i].join();
  }
}

In the VolatileMain class, two threads are used to access volatile variables. The output is as follows:


[Thread 10]: Old value = 0
[Thread 11]: Old value = 0
[Thread 10]: New value = 1
[Thread 11]: New value = 2

As can be seen from the output, first, both threads output Then, after the increaseCounter method is called, both threads access and output the latest volatile variable value.

happens-before relationship

When using the volatile keyword, I have to mention the happens-before relationship of the java memory model. The happens-before relationship is an important aspect of Java's memory model. It is built between two different events so that all changes to the object by the first event can be seen and reflected by the second event. For example, when one thread writes to a volatile variable and another thread subsequently accesses the variable, a happens-before relationship is established. Therefore, all changes to volatile variables are visible to other threads.

Things to note

When using the volatile keyword in a program, we must pay attention to the following points:

  1. The volatile keyword does not eliminate the need for synchronized operations between atoms, since memory consistency errors are still possible

  2. Using atomic variables is more efficient than using synchronized synchronized code, but in order Avoiding memory consistency errors requires extra effort

  3. volatile keyword cannot replace synchronized synchronized code blocks and methods

The above is the detailed content of The use and precautions of volatile keyword in Java. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Java 函数中的 volatile 变量如何保证线程安全?Java 函数中的 volatile 变量如何保证线程安全?May 04, 2024 am 10:15 AM

Java中volatile变量保证线程安全的方法:可见性:确保一个线程对volatile变量的修改立即对其他线程可见。原子性:确保对volatile变量的某些操作(如写入、读取和比较交换)是不可分割的,不会被其他线程打断。

详解Java中volatile关键字的使用场景及其作用详解Java中volatile关键字的使用场景及其作用Jan 30, 2024 am 10:01 AM

Java中volatile关键字的作用及应用场景详解一、volatile关键字的作用在Java中,volatile关键字用于标识一个变量在多个线程之间可见,即保证可见性。具体来说,当一个变量被声明为volatile时,任何对该变量的修改都会立即被其他线程所知晓。二、volatile关键字的应用场景状态标志volatile关键字适用于一些状态标志的场景,例如一

带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java并发编程之volatile与JMM多线程内存模型实例分析Java并发编程之volatile与JMM多线程内存模型实例分析May 27, 2023 am 08:58 AM

一、通过程序看现象在开始为大家讲解Java多线程缓存模型之前,我们先看下面的这一段代码。这段代码的逻辑很简单:主线程启动了两个子线程,一个线程1、一个线程2。线程1先执行,sleep睡眠2秒钟之后线程2执行。两个线程使用到了一个共享变量shareFlag,初始值为false。如果shareFlag一直等于false,线程1将一直处于死循环状态,所以我们在线程2中将shareFlag设置为true。publicclassVolatileTest{publicstaticbooleanshareFl

C++编译错误:不能调用从volatile类型转换的成员函数,怎么处理?C++编译错误:不能调用从volatile类型转换的成员函数,怎么处理?Aug 21, 2023 pm 09:28 PM

C++是一门强类型语言,严格限制了变量的类型转换,但是在某些情况下,我们可能需要对volatile类型对象进行类型转换,特别是在嵌入式开发中,我们常常需要访问硬件寄存器,而这些寄存器通常都是volatile类型的。然而,由于volatile类型的对象具有特殊的语义,所以C++编译器会对其进行一些特殊的限制,这就导致了“不能调用从volatile类型转换的成员

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment