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();
        }
    }
  • 相关阅读:
    底部菜单栏之Fragment的详细介绍和使用方法
    Warm up 2
    如何做好一位资深的web前端工程师
    使用 HTML5 canvas 绘制精美的图形
    计算元素距离浏览器左边的距离
    [JSOI2016]独特的树叶
    【SDOI2009】Elaxia的路线
    【SCOI2009】最长距离
    【SCOI2009】围豆豆
    【AHOI2005】穿越磁场
  • 原文地址:https://www.cnblogs.com/goldlong/p/10953840.html
Copyright © 2011-2022 走看看