How to achieve thread synchronization using lock mechanism in Java?
How to use the lock mechanism in Java to achieve thread synchronization?
In multi-threaded programming, thread synchronization is a very important concept. When multiple threads access and modify shared resources at the same time, data inconsistency or race conditions may result. Java provides a locking mechanism to solve these problems and ensure thread-safe access to shared resources.
The locking mechanism in Java is provided by the synchronized keyword and the Lock interface. Next, we'll learn how to use these two mechanisms to achieve thread synchronization.
Example of using the synchronized keyword to implement thread synchronization:
class Counter { private int count = 0; public synchronized void increment() { count++; } public synchronized int getCount() { return count; } } class IncrementThread extends Thread { private Counter counter; public IncrementThread(Counter counter) { this.counter = counter; } public void run() { for (int i = 0; i < 1000; i++) { counter.increment(); } } } public class SynchronizedExample { public static void main(String[] args) throws InterruptedException { Counter counter = new Counter(); IncrementThread thread1 = new IncrementThread(counter); IncrementThread thread2 = new IncrementThread(counter); thread1.start(); thread2.start(); thread1.join(); thread2.join(); System.out.println("Final count: " + counter.getCount()); } }
In the above example, the Counter class has a count variable used to represent the value of the counter. The increment() method is modified with the synchronized keyword, which means that only one thread can access and modify the count variable at any time. The getCount() method is also modified with the synchronized keyword to ensure thread safety when obtaining the counter value.
The IncrementThread class is a thread class that accepts a Counter object as a constructor parameter and calls the increment() method in the run() method to increase the value of the counter.
In the main program, we create two IncrementThread threads and pass them to two thread instances respectively. We then start these two threads and wait for them to complete using the join() method. Finally, we print out the final counter value.
Example of using the Lock interface to implement thread synchronization:
class Counter { private int count = 0; private Lock lock = new ReentrantLock(); public void increment() { lock.lock(); try { count++; } finally { lock.unlock(); } } public int getCount() { lock.lock(); try { return count; } finally { lock.unlock(); } } } class IncrementThread extends Thread { private Counter counter; public IncrementThread(Counter counter) { this.counter = counter; } public void run() { for (int i = 0; i < 1000; i++) { counter.increment(); } } } public class LockExample { public static void main(String[] args) throws InterruptedException { Counter counter = new Counter(); IncrementThread thread1 = new IncrementThread(counter); IncrementThread thread2 = new IncrementThread(counter); thread1.start(); thread2.start(); thread1.join(); thread2.join(); System.out.println("Final count: " + counter.getCount()); } }
In the above example, the Lock interface is used in the increment() and getCount() methods of the Counter class to implement thread synchronization. We create a ReentrantLock instance to acquire and release the lock at the beginning and end of the method respectively.
The code for the IncrementThread class and the main program is the same as in the previous example. Just use the Lock interface instead of the synchronized keyword in the Counter class to achieve thread synchronization.
Summary:
In multi-threaded programming, thread synchronization is an important concept. Java provides the synchronized keyword and Lock interface to achieve thread synchronization. No matter which mechanism is used, it can be guaranteed that only one thread can access and modify shared resources at any time, thereby ensuring thread-safe access.
The above is the sample code for using the lock mechanism in Java to achieve thread synchronization. By understanding and studying these examples, we can better apply thread synchronization to ensure the correctness and performance of multi-threaded programs.
The above is the detailed content of How to achieve thread synchronization using lock mechanism in Java?. 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

How to write a simple student performance report generator using Java? Student Performance Report Generator is a tool that helps teachers or educators quickly generate student performance reports. This article will introduce how to use Java to write a simple student performance report generator. First, we need to define the student object and student grade object. The student object contains basic information such as the student's name and student number, while the student score object contains information such as the student's subject scores and average grade. The following is the definition of a simple student object: public

How to write a simple student attendance management system using Java? With the continuous development of technology, school management systems are also constantly updated and upgraded. The student attendance management system is an important part of it. It can help the school track students' attendance and provide data analysis and reports. This article will introduce how to write a simple student attendance management system using Java. 1. Requirements Analysis Before starting to write, we need to determine the functions and requirements of the system. Basic functions include registration and management of student information, recording of student attendance data and

How to deal with thread synchronization and concurrent access issues in C# development requires specific code examples. In C# development, thread synchronization and concurrent access issues are a common challenge. Because multiple threads can access and operate on shared data simultaneously, race conditions and data inconsistencies can arise. To solve these problems, we can use various synchronization mechanisms and concurrency control methods to ensure correct cooperation and data consistency between threads. Mutex lock (Mutex) Mutex lock is the most basic synchronization mechanism used to protect shared resources. Visit when needed

ChatGPTJava: How to build an intelligent music recommendation system, specific code examples are needed. Introduction: With the rapid development of the Internet, music has become an indispensable part of people's daily lives. As music platforms continue to emerge, users often face a common problem: how to find music that suits their tastes? In order to solve this problem, the intelligent music recommendation system came into being. This article will introduce how to use ChatGPTJava to build an intelligent music recommendation system and provide specific code examples. No.

How to use Java to implement the inventory statistics function of the warehouse management system. With the development of e-commerce and the increasing importance of warehousing management, the inventory statistics function has become an indispensable part of the warehouse management system. Warehouse management systems written in the Java language can implement inventory statistics functions through concise and efficient code, helping companies better manage warehouse storage and improve operational efficiency. 1. Background introduction Warehouse management system refers to a management method that uses computer technology to perform data management, information processing and decision-making analysis on an enterprise's warehouse. Inventory statistics are

How to use Java to implement breadth-first search algorithm Breadth-First Search algorithm (Breadth-FirstSearch, BFS) is a commonly used search algorithm in graph theory, which can find the shortest path between two nodes in the graph. BFS is widely used in many applications, such as finding the shortest path in a maze, web crawlers, etc. This article will introduce how to use Java language to implement the BFS algorithm, and attach specific code examples. First, we need to define a class for storing graph nodes. This class contains nodes

Astringisaclassof'java.lang'packagethatstoresaseriesofcharacters.ThosecharactersareactuallyString-typeobjects.Wemustenclosethevalueofstringwithindoublequotes.Generally,wecanrepresentcharactersinlowercaseanduppercaseinJava.And,itisalsopossibletoconver

IntroductionSymmetric encryption, also known as key encryption, is an encryption method in which the same key is used for encryption and decryption. This encryption method is fast and efficient and suitable for encrypting large amounts of data. The most commonly used symmetric encryption algorithm is Advanced Encryption Standard (AES). Java provides strong support for symmetric encryption, including classes in the javax.crypto package, such as SecretKey, Cipher, and KeyGenerator. Symmetric encryption in Java The JavaCipher class in the javax.crypto package provides cryptographic functions for encryption and decryption. It forms the core of the Java Cryptozoology Extensions (JCE) framework. In Java, the Cipher class provides symmetric encryption functions, and K
