Multi-thread deadlock

Source: Internet
Author: User

Multi-thread deadlock is usually nested synchronization in synchronization.

Actually

Snychronized (Lock 1)

{

Snychronized (Lock 2)

}

While sending deadlocks


/*
Multi-thread deadlock
Nested synchronization in synchronization;
It mainly avoids deadlock in writing programs.
*/
Class Test11 implements Runnable
{
Private boolean flag;
Test11 (boolean flag)
{
This. flag = flag;
}
Public void run ()
{
If (flag)
{
While (true)
{
Synchronized (MyLock. locka)
{
System. out. println ("if locka ");
Synchronized (MyLock. lockb)
{
System. out. println ("if lockb ");
}
}
}
}
Else
{
Synchronized (MyLock. lockb)
{
System. out. println ("else lockb ");
Synchronized (MyLock. locka)
{
System. out. println ("else locka ");
}
}
}
}
}
Class MyLock
{
Static Object locka = new Object ();
Static Object lockb = new Object ();
}
Class Test_11_15
{
Public static void main (String [] args)
{
System. out. println ("hello wolrd ");
Thread t1 = new Thread (new Test11 (true ));
Thread t2 = new Thread (new Test11 (false ));
T1.start ();
T2.start ();
}
}

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.