Table of Contents
What is Synchronized
Analyzing the Synchronized keyword from the bytecode level
Home Java javaTutorial What is Java Synchronized

What is Java Synchronized

May 14, 2023 am 08:28 AM
java synchronized

What is Synchronized

Dear Java readers, you are no stranger 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 it is used in multi-threading. You need to use the synchronized keyword, knowing that synchronized can ensure thread safety.

  • 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 lock mutex

  • It can ensure the atomicity and visibility of a piece of code (critical section).

Analyzing the Synchronized keyword from the bytecode level

It is most appropriate to start with a case.

class Demo1{
    // 互斥对象
    static Object object = new Object();
    // 竞争条件
    static int cout = 0;
    public static void main(String[] args) {
        // 互斥
        synchronized(object){
            // 以下是临界区
            cout++;
            System.out.println("synchronized");
        }
    }
}
Copy after login

We can’t tell anything just from the Java code, and the Java program is compiled into a bytecode file, so we parse the bytecode

Constant pool:
   #1 = Methodref          #7.#26         // java/lang/Object."":()V
   #2 = Fieldref           #8.#27         // Demo1.object:Ljava/lang/Object;
   #3 = Fieldref           #8.#28         // Demo1.cout:I
   #4 = Fieldref           #29.#30        // java/lang/System.out:Ljava/io/PrintStream;
   #5 = String             #31            // synchronized
   #6 = Methodref          #32.#33        // java/io/PrintStream.println:(Ljava/lang/String;)V
   #7 = Class              #34            // java/lang/Object
   #8 = Class              #35            // Demo1
   #9 = Utf8               object
  #10 = Utf8               Ljava/lang/Object;
  #11 = Utf8               cout
  #12 = Utf8               I
  #13 = Utf8              
  #14 = Utf8               ()V
  #15 = Utf8               Code
  #16 = Utf8               LineNumberTable
  #17 = Utf8               main
  #18 = Utf8               ([Ljava/lang/String;)V
  #19 = Utf8               StackMapTable
  #20 = Class              #36            // "[Ljava/lang/String;"
  #21 = Class              #34            // java/lang/Object
  #22 = Class              #37            // java/lang/Throwable
  #23 = Utf8              
  #24 = Utf8               SourceFile
  #25 = Utf8               Demo1.java
  #26 = NameAndType        #13:#14        // "":()V
  #27 = NameAndType        #9:#10         // object:Ljava/lang/Object;
  #28 = NameAndType        #11:#12        // cout:I
  #29 = Class              #38            // java/lang/System
  #30 = NameAndType        #39:#40        // out:Ljava/io/PrintStream;
  #31 = Utf8               synchronized
  #32 = Class              #41            // java/io/PrintStream
  #33 = NameAndType        #42:#43        // println:(Ljava/lang/String;)V
  #34 = Utf8               java/lang/Object
  #35 = Utf8               Demo1
  #36 = Utf8               [Ljava/lang/String;
  #37 = Utf8               java/lang/Throwable
  #38 = Utf8               java/lang/System
  #39 = Utf8               out
  #40 = Utf8               Ljava/io/PrintStream;
  #41 = Utf8               java/io/PrintStream
  #42 = Utf8               println
  #43 = Utf8               (Ljava/lang/String;)V
         0: getstatic     #2        // 从2号常量池中拿到静态变量,压入到操作数栈中                  
         3: dup                     // 把操作数栈栈顶的对象赋值一份
4: astore_1                                                                                                                                                                                                                                                                     but 5: getstatic #3 // Get the static variable from constant pool No. 2 and push it into the operand stack
9: iconst_1 iconst_1 // Push the constant 1 into the operand stack
10: iadd 10: iadd // Consumption The data of the two operand stacks are added and then pushed onto the top of the stack
11: putstatic #3 //Assign the variable on the top of the operand stack to constant pool No. 3
14: getstatic #4 // Push the object of constant pool No. 4 into the operand stack
17: ldc #5 // Parse the symbol of constant pool 5 and get the string constant "synchronized"
19: invokevirtual #6 // Execute println Function, consumption of 2 operations stack
22: ALOAD_1 // Press the data of the local variable table 1 into the operation number stack
23: Monitorexit // The end of the mutual lock, it is also the byte code level of Synchronized Implementation
24: goto 32 // Jump to line 32.
        27: astore_2                                                                                                                                                                                                                                                   to Top of the stack, used by the monitorexit instruction
29: monitorexit                 // There may be an exception, but the lock needs to be released, otherwise it will be deadlocked.
30: aload_2                                                                                                                                                                                                                               to ‐ to 32 to Receive exception to be thrown,                      // Function returns


The above is a complete explanation of the bytecode. It is actually very simple. Finally, the Synchronized keyword is parsed into monitorenter and monitorexit bytecode instructions, and then each time before executing these two bytecode instructions, The mutex object is pushed onto the operand stack for use by the monitorenter and monitorexit bytecode instructions.

So the next article is to go to the Hotspot source code to parse the detailed process of monitorenter and monitorexit bytecode instructions.

The difference between Synchronized and ReentrantLock

This is a very common interview question, and it is asked very frequently in interviews

Similarities:

Both It is the implementation of mutex lock

The difference:

Synchronized is based on the internal implementation of the JVM, and ReentrantLock is implemented on the Java level (but the core code of ReentrantLock still calls C code).

  • Synchronized has been optimized after 1.6. There are several different levels of locks. The strength of the lock is increased according to the intensity of thread competition (commonly known as lock upgrade). It is more suitable for scenarios, and ReentrantLock It is a bit rigid in the selection of lock strength.

  • Although ReentrantLock is slightly rigid in the choice of lock strength, you can choose between fair and unfair locks, while Synchronized can only be unfair locks

  • ReentrantLock's conditional waiting queue can create multiple and highly customized. There is only one queue at the bottom of Synchronized.

  • ReentrantLock requires the user to manually open the lock and release the lock manually. The bottom layer of the Synchronized keyword is automatically implemented through bytecode

The above is the detailed content of What is Java Synchronized. 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)

Break or return from Java 8 stream forEach? Break or return from Java 8 stream forEach? Feb 07, 2025 pm 12:09 PM

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: A Key Language for Web Development PHP: A Key Language for Web Development Apr 13, 2025 am 12:08 AM

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

PHP vs. Python: Understanding the Differences PHP vs. Python: Understanding the Differences Apr 11, 2025 am 12:15 AM

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 vs. Other Languages: A Comparison PHP vs. Other Languages: A Comparison Apr 13, 2025 am 12:19 AM

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 vs. Python: Core Features and Functionality PHP vs. Python: Core Features and Functionality Apr 13, 2025 am 12:16 AM

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.

Java Program to Find the Volume of Capsule Java Program to Find the Volume of Capsule Feb 07, 2025 am 11:37 AM

Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods. Capsule volume formula The formula for capsule volume is as follows: Capsule volume = Cylindrical volume Volume Two hemisphere volume in, r: The radius of the hemisphere. h: The height of the cylinder (excluding the hemisphere). Example 1 enter Radius = 5 units Height = 10 units Output Volume = 1570.8 cubic units explain Calculate volume using formula: Volume = π × r2 × h (4

PHP: The Foundation of Many Websites PHP: The Foundation of Many Websites Apr 13, 2025 am 12:07 AM

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's Impact: Web Development and Beyond PHP's Impact: Web Development and Beyond Apr 18, 2025 am 12:10 AM

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

See all articles