Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the special monitor in java?

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

Most people do not understand the knowledge of this "what is special monitor in java" article, so the editor summarizes the following content, detailed content, clear steps, and has a certain reference value. I hope you can get something after reading this article. Let's take a look at this "what is special monitor in java" article.

Description

1. This monitor: the synchronized on the member method, which is this monitor, is equivalent to using synchronized (this) in the method

2. Class monitor: synchronized on static methods, which is class monitor, is equivalent to using synchronized (XXX.class) in static methods

Example

Public class Main {public synchronized void method1 () {System.out.println (Thread.currentThread (). GetName () + "method1"); try {TimeUnit.MINUTES.sleep (5);} catch (InterruptedException e) {e.printStackTrace ();}} public synchronized void method2 () {System.out.println (Thread.currentThread (). GetName () + "method2") Try {TimeUnit.MINUTES.sleep (5);} catch (InterruptedException e) {e.printStackTrace ();}} public static void main (String [] args) throws InterruptedException {Main m = new Main (); new Thread (m::method1). Start (); new Thread (m::method2). Start () }} the above is about the content of this article on "what is the Special monitor in java?" I believe we all have a certain understanding. I hope the content shared by the editor will be helpful to you. If you want to know more about the relevant knowledge, please follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report