zoukankan      html  css  js  c++  java
  • 3.线程死锁

    死锁:同步锁中嵌套同步锁,导致锁无法释放
     
    package com.jlong;
     
    class ThreadTrain4 implements Runnable {
        private static int count = 100;
        public  Object object = new Object();
        public boolean flag = true;
     
        @Override
        public void run() {
            if (flag) {
                while (count > 0) {
                    synchronized (object) {
                        show();
                    }
                }
            } else {
                while (count > 0) {
                    show();
                }
            }
        }
     
        public synchronized void show() {
            synchronized (object){
                if (count > 0) {
                    try {
                        Thread.sleep(50);
     
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    System.out.println(Thread.currentThread().getName() + "出售的第" + (100 - count + 1) + "张票");
                    count--;
     
                }
            }
     
        }
    }
     
    public class ThreadDemo4 {
        public static void main(String[] args) throws InterruptedException {
            ThreadTrain4 threadTrain = new ThreadTrain4();
            Thread thread1 = new Thread(threadTrain);
            Thread thread2 = new Thread(threadTrain);
            thread1.start();
            Thread.sleep(50);
            threadTrain.flag = false;
            thread2.start();
        }
    }
  • 相关阅读:
    phpexcel 字符串转码
    thinkphp 3.2 linux二级目录安装
    linux 系统、命令、软件
    thinkphp3.2和phpexcel导入
    苹果手机微信分享代码失效
    thinkphp3.2与phpexcel带图片生成 完美案例
    thinkphp3.2与phpexcel基础生成
    thinkphp 3.2加载类
    thinkphp 3.2与phpexcel
    thinkphp 导出exl功能
  • 原文地址:https://www.cnblogs.com/goldlong/p/10953840.html
Copyright © 2011-2022 走看看