• java的死锁学习


    学习java的死锁写的代码

    也是看书上的然后自己敲了一个

    <span style="font-size:18px;">package synchronization.java.test;
    /**
     * 关于java中线程死锁样例
     * 在学习操作系统的时候有线程死锁可是也仅仅是理解也没有亲自己主动手敲过
     * 如今学java既然学到这里了就敲了一个简单的以进餐为例的代码
     * @author hello
     * @version 8
     */
    public class DeadLock {
         static String knife="餐刀",fork="叉子"; 
          static class A extends Thread{
        	 public void run(){  //重写的方法
        		 synchronized(knife){//
        			 System.out.println("小明拿到了"+knife+"等待"+fork+".........");
        			 try {
    					Thread.sleep(100);
    				} catch (InterruptedException e) {
    					e.printStackTrace();
    				}
        			 synchronized(fork){//这是用来測试的其实因为死锁了这一步永远也不会出现
        				 System.out.println("小明又拿到"+fork);
        			 }
        		 }
        	 }
         }
         static class B extends Thread{
        	 public void run(){
        		 synchronized(fork){
        			 System.out.println("小华拿到了"+fork+"等待"+knife+".........");
        			 try {
    					Thread.sleep(100);
    				} catch (InterruptedException e) {
    					e.printStackTrace();
    				}
        			 synchronized(knife){//这是用来測试的其实因为死锁了这一步永远也不会出现
        				 System.out.println("小华又拿到"+knife);
        			}
        		 }
        	 }
         }
         static class Demo extends  Thread{
        	 public Demo(){
        		 this.setDaemon(true);
        	 }
        	 public void run(){
        		 while(true){
        			 try {
    					Thread.sleep(1000);
    				} catch (InterruptedException e) {
    					e.printStackTrace();
    				}//这个线程一直在执行
        			 System.out.println("程序正在执行中......");
        		 }
        	 }
        	 
         }
    	public static void main(String[] args) {
    	     new A().start();//因为是静态的直接new即可
    	     new B().start();
    	     new Demo().start();
    
    	}
    
    }
    </span>


  • 相关阅读:
    NEC学习 ---- 模块 -多行式面包屑导航
    NEC学习 ---- 模块 -文本圆角背景导航
    NEC学习 ---- 布局 -三列,右侧自适应
    NEC学习 ---- 布局 -三列,左侧自适应
    NEC学习 ---- 布局 -三列, 左右定宽,中间自适应
    NEC学习 ---- 布局 -两列定宽
    NEC学习 ---- 布局 -两列, 右侧定宽,左侧自适应
    jquery weibo 留言
    原生js+本地储存登录注册
    原生捕鱼
  • 原文地址:https://www.cnblogs.com/jhcelue/p/7117442.html
Copyright © 2020-2023  润新知