• 一个关于死锁的小程序


    package project;
    
    public class Main implements Runnable{
        static Object s1 = new Object(),s2 = new Object();
        
        public void run(){
            if(Thread.currentThread().getName().equals("t1")){
                synchronized (s1) {
                    System.out.println("th1 locked s1");
                    try {
                        Thread.sleep(1000);
                    } catch (InterruptedException e) {
                        // TODO 自动生成的 catch 块
                        e.printStackTrace();
                    }
                    synchronized (s2) {
                        System.out.println("th1 locked s2");
                    }
                    
                }
            }else {
                synchronized (s2) {
                    System.out.println("th1 locked s2");
                    try {
                        Thread.sleep(1000);
                    } catch (InterruptedException e) {
                        // TODO 自动生成的 catch 块
                        e.printStackTrace();
                    }
                    synchronized (s1) {
                        System.out.println("th1 locked s1");
                    }
                }
            }
        }
        public static void main(String[] args) {
            Thread t1 = new Thread(new Main(),"t1");
            Thread t2 = new Thread(new Main(),"t2");
            t1.start();
            t2.start();
        }
    }
  • 相关阅读:
    机器学习--强化学习
    机器学习--深度学习
    机器学习--维度灾难
    机器学习--最优化
    机器学习--降维
    机器学习--聚类
    机器学习--模型提升
    Git和gitHub用户名 邮箱
    Git线上操作
    版本控制器:Git
  • 原文地址:https://www.cnblogs.com/plxx/p/3661471.html
Copyright © 2020-2023  润新知