An implementation of deadlock in Java multithreading problem

Source: Internet
Author: User

1. Directly on the code:

Class Lockdemo{public static Final Object A_lock=new object ();p ublic static Final Object B_lock=new object ();} public class Threadlockdemo implements Runnable{public Boolean Flag;public Threadlockdemo (Boolean flag) {This.flag=flag ;} public void Run () {if (flag) {synchronized (Lockdemo.a_lock) {System.out.println ("if  a_lock"); synchronized ( Lockdemo.b_lock) {System.out.println ("B_lock");}}} Else{synchronized (Lockdemo.b_lock) {System.out.println ("Else B_lock"); synchronized (Lockdemo.a_lock) { System.out.println ("A_lock");}}} public static void Main (string[] args) {//TODO auto-generated method Stubthreadlockdemo td1=new Threadlockdemo (false); Threadlockdemo td2=new Threadlockdemo (true); Thread t1=new thread (TD1); Thread t2=new thread (TD2); T1.start (); T2.start ();}}

2. There is a picture of the truth


An implementation of deadlock in Java multithreading problem

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.