How to implement thread synchronization in java
Method 1: Use the synchronized keyword
Since each object in Java has a built-in lock, when using this keyword to modify the method , a built-in lock protects the entire method. Before calling this method, you need to obtain the built-in lock, otherwise it will be blocked.
Note: The synchronized keyword can also modify a static method. If the static method is called at this time, the entire class will be locked.
Note: Synchronization is a high-cost operation, so the content of synchronization should be minimized. Usually there is no need to synchronize the entire method, just use synchronized code blocks to synchronize key code.
The synchronized keyword is used to protect shared data. Please pay attention to "shared data", you must distinguish which data is shared data
Related video tutorial recommendation:java video
Example:
package com.gcc.interview.synchro; public class MybanRunnable implements Runnable{ private Bank bank; public MybanRunnable(Bank bank) { this.bank = bank; } @Override public void run() { for(int i=0;i<10;i++) { bank.save1(100); System.out.println("账户余额是---"+bank.getAccount()); } } }
package com.gcc.interview.synchro; class Bank{ private int account = 100; public int getAccount() { return account; } //同步方法 public synchronized void save(int money) { account+=money; } public void save1(int money) { //同步代码块 synchronized(this) { account+=money; } } public void userThread() { Bank bank = new Bank(); MybanRunnable my1 = new MybanRunnable(bank); System.out.println("线程1"); Thread th1 = new Thread(my1); th1.start(); System.out.println("线程2"); Thread th2 = new Thread(my1); th2.start(); } }
Method 2: wait and notify
wait(): puts a thread in a waiting state and releases the lock of the object it holds.
sleep(): Puts a running thread into sleep state. It is a static method. Call this method to catch InterruptedException.
notify(): Wake up a thread in the waiting state. Note that when calling this method, you cannot exactly wake up a thread in the waiting state. Instead, the JVM determines which thread to wake up, and Not by priority.
Allnotity(): Wake up all threads in the waiting state. Note that you do not give all awakened threads an object lock, but let them compete.
Method 3: Use special domain variable volatile to achieve thread synchronization
a.volatile keyword provides a lock-free mechanism for domain variable access
b. Using volatile to modify a field is equivalent to telling the virtual machine that the field may be updated by other threads
c. Therefore, each time the field is used, it must be recalculated instead of using the value in the register
d.volatile does not provide any atomic operations, nor can it be used to modify final type variables
For example:
In the above example, just add in front of account Volatile modification can achieve thread synchronization.
//只给出要修改的代码,其余代码与上同 class Bank { //需要同步的变量加上volatile private volatile int account = 100; public int getAccount() { return account; } //这里不再需要synchronized public void save(int money) { account += money; } }
Note: The non-synchronization problem in multi-threading mainly occurs in reading and writing to the domain. If the domain itself avoids this problem, there is no need to modify the method of operating the domain. Using final fields, lock-protected fields and volatile fields can avoid non-synchronization problems.
Method 4: Use reentrancy locks to achieve thread synchronization
A new java.util.concurrent package has been added in JavaSE5.0 to support synchronization.
The ReentrantLock class is a reentrant, mutually exclusive lock that implements the Lock interface. It has the same basic behavior and semantics as using synchronized methods and blocks, and extends its capabilities.
Commonly used methods of the ReenreantLock class are:
Note: ReentrantLock() also has a construction method that can create a fair lock, but because it can greatly reduce Program running efficiency, not recommended
private int account = 100; private ReentrantLock lock = new ReentrantLock(); public int getAccount() { return account; } //同步方法 public void save(int money) { lock.lock(); try { account+=money; } finally { lock.unlock(); } }
Note: Regarding the selection of Lock object and synchronized keyword:
a. It is best to use neither of them and use a java.util.concurrent package The mechanism provided can help users handle all lock-related codes.
b. If the synchronized keyword can meet the needs of users, use synchronized because it can simplify the code
c. If more advanced functions are needed, use the ReentrantLock class. At this time, Pay attention to releasing the lock in time, otherwise deadlock will occur. Usually the lock is released in the finally code
Method 5: Use local variables to achieve thread synchronization
If you use ThreadLocal to manage variables , then each thread using the variable obtains a copy of the variable, and the copies are independent of each other, so that each thread can modify its own copy of the variable at will without affecting other threads.
Commonly used methods of the ThreadLocal class
//只改Bank类,其余代码与上同 public class Bank{ //使用ThreadLocal类管理共享变量account private static ThreadLocal<Integer> account = new ThreadLocal<Integer>(){ @Override protected Integer initialValue(){ return 100; } }; public void save(int money){ account.set(account.get()+money); } public int getAccount(){ return account.get(); } }
Note: ThreadLocal and synchronization mechanism
a.ThreadLocal and synchronization mechanism are both to solve multiple problems Access conflict problem of the same variable in threads.
b. The former adopts the method of "exchanging space for time", and the latter adopts the method of "exchanging time for space".
Recommended related articles and tutorials: zero basic introduction to java
The above is the detailed content of How to implement thread synchronization 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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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











PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

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

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

PHP and Python each have their own advantages and are suitable for different scenarios. 1.PHP is suitable for web development and provides built-in web servers and rich function libraries. 2. Python is suitable for data science and machine learning, with concise syntax and a powerful standard library. When choosing, it should be decided based on project requirements.

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

The reasons why PHP is the preferred technology stack for many websites include its ease of use, strong community support, and widespread use. 1) Easy to learn and use, suitable for beginners. 2) Have a huge developer community and rich resources. 3) Widely used in WordPress, Drupal and other platforms. 4) Integrate tightly with web servers to simplify development deployment.

PHP is suitable for web development and content management systems, and Python is suitable for data science, machine learning and automation scripts. 1.PHP performs well in building fast and scalable websites and applications and is commonly used in CMS such as WordPress. 2. Python has performed outstandingly in the fields of data science and machine learning, with rich libraries such as NumPy and TensorFlow.
