黑马程序员技术交流社区

标题: 明天药学的,预习下 [打印本页]

作者: ft352177    时间: 2016-5-23 01:11
标题: 明天药学的,预习下
package com.heima.syn;

public class Demo1_Synchronized {

        /**
         * @param args
         * 同步代码块
         */
        public static void main(String[] args) {
                final Printer p = new Printer();
               
                new Thread() {
                        public void run() {
                                while(true) {
                                        p.print1();
                                }
                        }
                }.start();
               
                new Thread() {
                        public void run() {
                                while(true) {
                                        p.print2();
                                }
                        }
                }.start();
        }

}

class Printer {
        Demo d = new Demo();
        public void print1() {
                //synchronized(new Demo()) {                                                        //同步代码块,锁机制,锁对象可以是任意的
                synchronized(d) {
                        System.out.print("黑");
                        System.out.print("马");
                        System.out.print("程");
                        System.out.print("序");
                        System.out.print("员");
                        System.out.print("\r\n");
                }
        }
       
        public void print2() {
                //synchronized(new Demo()) {                                                        //锁对象不能用匿名对象,因为匿名对象不是同一个对象
                synchronized(d) {               
                        System.out.print("传");
                        System.out.print("智");
                        System.out.print("播");
                        System.out.print("客");
                        System.out.print("\r\n");
                }
        }
}

class Demo{}






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