首页 > 其他分享 >死锁代码

死锁代码

时间:2023-02-12 20:55:20浏览次数:31  
标签:currentThread Thread get 代码 System 死锁 println out

public class DeadLockDemo {  
    private static Object resource1 = new Object();//资源 1  
    private static Object resource2 = new Object();//资源 2  
  
    public static void main(String[] args) {  
        new Thread(() -> {  
            synchronized (resource1) {  
                System.out.println(Thread.currentThread() + "get resource1");  
                try {  
                    Thread.sleep(1000);  
                } catch (InterruptedException e) {  
                    e.printStackTrace();  
                }  
                System.out.println(Thread.currentThread() + "waiting get resource2");  
                synchronized (resource2) {  
                    System.out.println(Thread.currentThread() + "get resource2");  
                }  
            }  
        }, "线程 1").start();  
  
        new Thread(() -> {  
            synchronized (resource2) {  
                System.out.println(Thread.currentThread() + "get resource2");  
                try {  
                    Thread.sleep(1000);  
                } catch (InterruptedException e) {  
                    e.printStackTrace();  
                }  
                System.out.println(Thread.currentThread() + "waiting get resource1");  
                synchronized (resource1) {  
                    System.out.println(Thread.currentThread() + "get resource1");  
                }  
            }  
        }, "线程 2").start();  
    }  
}

 

标签:currentThread,Thread,get,代码,System,死锁,println,out
From: https://www.cnblogs.com/deepalley/p/17114701.html

相关文章