黑马程序员技术交流社区

标题: 线程死锁再现 [打印本页]

作者: taozhihui    时间: 2016-9-14 01:13
标题: 线程死锁再现
private static String s1 = "筷子左";
                        private static String s2 = "筷子右";
                        public static void main(String[] args) {
                                new Thread() {
                                        public void run() {
                                                while(true) {
                                                        synchronized(s1) {
                                                                System.out.println(getName() + "...拿到" + s1 + "等待" + s2);
                                                                synchronized(s2) {
                                                                        System.out.println(getName() + "...拿到" + s2 + "开吃");
                                                                }
                                                        }
                                                }
                                        }
                                }.start();
                               
                                new Thread() {
                                        public void run() {
                                                while(true) {
                                                        synchronized(s2) {
                                                                System.out.println(getName() + "...拿到" + s2 + "等待" + s1);
                                                                synchronized(s1) {
                                                                        System.out.println(getName() + "...拿到" + s1 + "开吃");
                                                                }
                                                        }
                                                }
                                        }
                                }.start();
                        }




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2