search
HomeJavajavaTutorialHow to implement thread safety in Java concurrent programming

    1. What is thread safety

    When multiple threads access a class, regardless of the calling method used by the runtime environment or the threads How will the execution be executed alternately, and this class can show the correct behavior without any additional synchronization or coordination in the main calling code, then this class is said to be thread-safe.

    Stateless objects must be thread-safe, such as: Servlet.

    2. Atomicity

    2.1 Race condition

    A race condition occurs when incorrect results occur due to improper execution timing.

    The "check first and then execute" operation is to determine the next action through a possible and effective observation result. For example: lazy initialization.

    if(instance == null) {
        instance = new SomeObject();
    }

    The result state of the "read-modify-write" operation depends on the previous state. Such as: increment operation.

    long count = 0;
    count++;

    2.2 Composite operation

    Atomic operation means that for all operations that access the same state (including the operation itself), this operation is executed in an atomic manner (indivisible) operation.

    In order to ensure thread safety, a set of operations that must be performed atomically is included, called compound operations.

    Incremental operations can use an existing thread-safe class to ensure thread safety. For example:

    AtomicLong count = new AtomicLong(0);
    count.incrementAndGet();

    3. Locking mechanism

    If a class has only one state variable, you can ensure the thread safety of the class by using a thread-safe state variable. When a class has more state, it's not enough to just add more thread-safe state variables. To ensure state consistency, all relevant state variables must be updated in a single atomic operation.

    3.1 Built-in lock

    Java provides a built-in lock: Synchronization code block, It includes: An object reference as a lock, an object as The block of code protected by this lock.

    The method modified with the keyword synchronized is a synchronized code block that spans the entire method body, and the lock of the synchronized code block is the object where the method is called. The static synchronized method uses the Class object as the lock.

    When the thread enters the synchronized code block, it will automatically acquire the lock; and when the thread exits the synchronized code block, it will automatically release the lock. At most one thread can hold this lock, so synchronized code is executed atomically.

    3.2 Reentrancy

    The built-in lock is reentrant, which means that the granularity of the operation to acquire the lock is the thread, not the call. When a thread attempts to reacquire a lock already held by it, the request also succeeds.

    Reentrancy further improves the encapsulation of locking behavior and simplifies the development of object-oriented concurrent code.

    public class Widget {
        public synchronized void doSomething() {
            //......
        }
    }
    public class LoggingWidget extends Widget {
        public synchronized void doSomething() {
            //......
            super.doSomething();//假如没有可重入的锁,该语句将产生死锁。
        }
    }

    4. Use locks to protect state

    For mutable state variables that may be accessed by multiple threads at the same time, you need to hold the same lock when accessing it. In this case , it is said that the state variable is protected by this lock.

    5. Activity and performance

    Coarse-grained use of locks ensures thread safety, but it may cause performance problems and activity problems, such as:

    @ThreadSafe
    public class SynchronizedFactorizer implements Servlet {
        @GuardedBy("this") private BigInteger lastNumber;
        @GuardedBy("this") private BigInteger[] lastFactors;
    
        public synchronized void service(ServletRequest req,
                                         ServletResponse resp) {
            BigInteger i = extractFromRequest(req);
            if (i.equals(lastNumber))
                encodeIntoResponse(resp, lastFactors);
            else {
                BigInteger[] factors = factor(i);//因数分解计算
                lastNumber = i;
                lastFactors = factors;//存放上一次计算结果
                encodeIntoResponse(resp, factors);
            }
        }
    }

    You can ensure the concurrency of the servlet and maintain thread safety by shrinking the synchronization code block. Do not split what should be atomic operations into multiple synchronized code blocks. Try to separate operations that do not affect shared state and take a long time to execute from synchronized code. Such as:

    public class CachedFactorizer implements Servlet {
        @GuardedBy("this") private BigInteger lastNumber;
        @GuardedBy("this") private BigInteger[] lastFactors;
    
        public void service(ServletRequest req, ServletResponse resp) {
            BigInteger i = extractFromRequest(req); 
            BigInteger[] factors = null;      
            synchronized (this) {
                if (i.equals(lastNumber)) {
                   factors = lastFactors.clone();
                }         
            }    
            if (factors == null) {        
                factors = factor(i);
                synchronized (this) {
                   lastNumber = i;
                   lastFactors = factors.clone();
                }
            }
            encodeIntoResponse(resp, factors);
        }
    }

    The above is the detailed content of How to implement thread safety in Java concurrent programming. For more information, please follow other related articles on the PHP Chinese website!

    Statement
    This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
    带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

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

    Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

    本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

    完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

    本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

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

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

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

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

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

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

    java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

    封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

    Java数据结构之AVL树详解Java数据结构之AVL树详解Jun 01, 2022 am 11:39 AM

    本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。

    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 Tools

    SAP NetWeaver Server Adapter for Eclipse

    SAP NetWeaver Server Adapter for Eclipse

    Integrate Eclipse with SAP NetWeaver application server.

    PhpStorm Mac version

    PhpStorm Mac version

    The latest (2018.2.1) professional PHP integrated development tool

    DVWA

    DVWA

    Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

    SublimeText3 English version

    SublimeText3 English version

    Recommended: Win version, supports code prompts!

    ZendStudio 13.5.1 Mac

    ZendStudio 13.5.1 Mac

    Powerful PHP integrated development environment