Home Java javaTutorial Introduction to the usage of synchronized keyword in Java (code example)

Introduction to the usage of synchronized keyword in Java (code example)

Jan 30, 2019 am 11:21 AM
synchronized

This article brings you an introduction to the usage of the synchronized keyword in Java (code examples). It has certain reference value. Friends in need can For reference, I hope it will be helpful to you.

In concurrent programming, the synchronized keyword is a common role. We used to call the synchronized keyword weight lock, but synchronized was optimized in JDK1.6 and biased locks and lightweight locks were introduced. This article introduces how to use the synchronized keyword, the differences and implementation principles of bias locks, lightweight locks and heavy locks.

Let’s first look at the 4 uses of the synchronized keyword.

1. Modify ordinary methods

private synchronized void synMethod(){
}
Copy after login

In this usage, Object instance of synchronized lock.

2. Modify the static method

private static synchronized void synMethod(){
}
Copy after login

synchronized In this case, the lock is the current Class object.

3. Synchronous method block

private  void synMethod1(){
        synchronized(this){
            
        }
    }    
    private  void synMethod2(){
        synchronized(ThreadTest.class){
            
        }
    }
Copy after login

lock object instance in synMethod1; synMethod2 Is the current Class object.

Introducing the lock principle again

Before introducing the lock principle, let’s first get to know the Java object header Mark Word, taking 32-bit as an example.

The above table describes the information stored in the object header when the object is in each lock state.

1. Biased lock

#In the actual environment, when a thread accesses a synchronized block, if no other thread competes for the lock, and The same thread acquires the lock multiple times, that is, a single thread runs synchronization code. In this case, if the thread is blocked every time, it means a waste of CPU performance. In this case, the concept of biased locking is introduced.

  • ##Accessing synchronized code blocks

  • Determine whether the thread ID stored in the object header Mark Word points to the current thread. If so, it indicates that the current lock is reentrant. There is no need to obtain the lock and directly execute the synchronization code

  • If not, try to use the CAS algorithm to update the thread ID to the object header.

  • #Successfully, obtain the lock and execute the synchronization code. Failure to update indicates that there is lock competition. Wait for the global safe point, suspend the thread that owns the biased lock, and choose to upgrade the biased lock to a lightweight lock or set it to no lock according to the lock flag in the object header.

You can use -XX:-userBiasedLocking=false to turn off JVM biased lock optimization, and enter lightweight locking directly by default.

2. Lightweight lock

  • Access synchronization code block, first create a lock record (Lock Record) area in the thread stack of the current thread.

  • Copy the object header Mark Word to the Lock Record.

  • Use CAS to try to update the thread pointer in the object header Mark Word to a pointer to the current thread

  • If the update is successful, you will get a lightweight Lock.

  • Update failed, check whether the pointer in Mark Word points to the current thread.

  • If yes, it means that the lock is reentrant. Execute the synchronized code block

  • If not, it means there is competition at this time. Lightweight locks need to be expanded into weight locks.

3. Weight lock

The weight lock is implemented based on the object monitor (Monitor).

#When a thread executes synchronization code, it needs to call a Monitor.enter instruction. After execution exits, call the Monitor.exit instruction. It can be seen here that the monitor is exclusive. Only one thread can enter successfully at a point in time, and other threads can only be blocked in the queue. So this weight lock is very expensive to operate.

##Lock status

25 bit

4bit

1bit

2bit

## 

23bit

2bit

##Whether the lock is biased

Lock flag

Lightweight lock

Pointer to the lock record in the stack

0

Heavyweight lock

Pointer to mutex (heavyweight lock)

10

GCMark

empty

11

##bias lock

ThreadID

##Epoch

Object generation age

1

##01

No lock

#hashCode of the object

Object generation age

0

01

The above is the detailed content of Introduction to the usage of synchronized keyword in Java (code example). For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

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

Video Face Swap

Video Face Swap

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

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

The principles and usage scenarios of Synchronized in Java and the usage and difference analysis of the Callable interface The principles and usage scenarios of Synchronized in Java and the usage and difference analysis of the Callable interface Apr 21, 2023 am 08:04 AM

1. Basic features 1. It starts with an optimistic lock, and if lock conflicts are frequent, it is converted to a pessimistic lock. 2. It starts with a lightweight lock implementation, and if the lock is held for a long time, it is converted to a heavyweight lock. 3. The spin lock strategy that is most likely used when implementing lightweight locks 4. It is an unfair lock 5. It is a reentrant lock 6. It is not a read-write lock 2. The JVM will synchronize the locking process Locks are divided into no lock, biased lock, lightweight lock, and heavyweight lock states. It will be upgraded sequentially according to the situation. Biased lock assumes that the male protagonist is a lock and the female protagonist is a thread. If only this thread uses this lock, then the male protagonist and the female protagonist can live happily forever even if they do not get a marriage certificate (avoiding high-cost operations). But the female supporting role appears

Java keyword synchronized principle and lock status example analysis Java keyword synchronized principle and lock status example analysis May 11, 2023 pm 03:25 PM

1. The concept of lock in Java Spin lock: When a thread acquires a lock, if the lock has been acquired by another thread, then the thread will wait in a loop, and then continue to judge whether the lock can be successfully acquired until it is acquired. The lock will exit the loop. Optimistic locking: Assuming there is no conflict, if the data is found to be inconsistent with the previously acquired data when modifying the data, the latest data will be read and the modification will be retried. Pessimistic lock: Assume that concurrency conflicts will occur, synchronize all data-related operations, and start locking from the time the data is read. Exclusive lock (write): Add a write lock to the resource. The thread can modify the resource, but other threads cannot lock it again (single write). Shared lock (read): After adding a read lock to a resource, it can only be read but not modified. Other threads can only add read locks and cannot add write locks (multiple). See as S

How to use synchronized to implement synchronization mechanism in Java? How to use synchronized to implement synchronization mechanism in Java? Apr 22, 2023 pm 02:46 PM

Summary of how to use synchronized in Java 1. When synchronized is used as a function modifier, the sample code is as follows: Publicsynchronizedvoidmethod(){//….} This is the synchronization method. So which object is synchronized locked at this time? What he locks is calling this synchronized method object. In other words, when an object P1 executes this synchronization method in different threads, they will form mutual exclusion to achieve synchronization effect. However, another object P2 generated by the Class to which this object belongs can arbitrarily call this method with the synchronized keyword added. The sample code above, etc.

What are the three synchronization methods in Java and how to use them? What are the three synchronization methods in Java and how to use them? Apr 27, 2023 am 09:34 AM

1. Explain that synchronized is our most commonly used synchronization method, and there are three main ways to use it. 2. Example//General class method synchronization synchronizedpublidvoidinvoke(){}//Class static method synchronization synchronizedpublicstaticvoidinvoke(){}//Code block synchronization synchronized(object){}The difference between these three methods is that the synchronized objects are different. Ordinary classes synchronize the object itself, static methods synchronize the Class itself, and code blocks synchronize the objects we fill in the brackets. What collections are there in Java?

What is the principle and process of Java Synchronized lock upgrade? What is the principle and process of Java Synchronized lock upgrade? Apr 19, 2023 pm 10:22 PM

Tool preparation Before we formally talk about the principle of synchronized, let's talk about spin locks first, because spin locks play a big role in the optimization of synchronized. To understand spin locks, we first need to understand what atomicity is. The so-called atomicity simply means that each operation is either not done or done. Doing all means that it cannot be interrupted during the operation. For example, to add one to the variable data, there are three steps: Load from memory into register. Add one to the value of data. Write the result back to memory. Atomicity means that when a thread is performing an increment operation, it cannot be interrupted by other threads. Only when this thread completes these three processes

Why does Java need to provide Lock instead of just using the synchronized keyword? Why does Java need to provide Lock instead of just using the synchronized keyword? Apr 20, 2023 pm 05:01 PM

Summary: The synchronized keyword is provided in Java to ensure that only one thread can access the synchronized code block. Since the synchronized keyword has been provided, why is the Lock interface also provided in the Java SDK package? Is this unnecessary reinvention of the wheel? Today, we will discuss this issue together. The synchronized keyword is provided in Java to ensure that only one thread can access the synchronized code block. Since the synchronized keyword has been provided, why is the Lock interface also provided in the Java SDK package? Is this unnecessary reinvention of the wheel? Today, let’s discuss it together

What is Java Synchronized What is Java Synchronized May 14, 2023 am 08:28 AM

What is Synchronized? Java readers are no strangers to the synchronized keyword. It can be seen in various middleware source codes or JDK source codes. For readers who are not familiar with synchronized, they only know that the synchronized keyword needs to be used in multi-threading. synchronized can ensure thread safety. It is called: mutex lock (only one thread can execute at the same time, other threads will wait), also called: pessimistic lock (only one thread can execute at the same time, other threads will wait). The JVM virtual machine will help you implement it. , developers only need to use the synchronized keyword. When using it, you need to use an object as a mutex for the lock

How many non-access modifiers are there in Java? How many non-access modifiers are there in Java? Aug 30, 2023 pm 06:01 PM

Java provides some other modifiers to provide functionality beyond visibility. These modifiers are called non-access modifiers. Static Members declared as static are common to all instances of the class. Static members are class-level members that are stored in class memory. Final This modifier is used to restrict further modifications to a variable, method, or class. The value of a variable declared final cannot be modified once it obtains its value. The Final method cannot be overridden in a subclass, nor can a subclass of the Final class be created. Abstract This modifier can be used with a class or method. You cannot apply this modifier to variables and constructors. Methods declared abstract must be modified in subclasses. You cannot instantiate a class declared abstract. Synchronous This modifier is used to control multiple threads

See all articles