线程通信方式:休眠唤醒方式

/*线程之间的通信方式:方式一:使用notify+wait+object实现线程之间的通信*/
/*实例:奇数线程打印10以内的奇数,偶数线程打印10以内的偶数*/
public class ThreadCommunication {

    private int i = 0;

    /*相当于synchronized 的钥匙*/
    private Object object = new Object();

    /*奇数*/
    public void odd() {
        synchronized (object){

            while (i < 10) {
                if (i % 2 == 1) {
                    System.out.println("奇数:" + i);
                    i++;
                    /*唤醒该线程*/
                    object.notify();
                } else {
                    try {
                        /*该线程等待*/
                        object.wait();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }
    }

    /*偶数*/
    public void even() {
        synchronized (object){
            while (i < 10) {
                if (i % 2 == 0) {
                    System.out.println("偶数:" + i);
                    i++;
                    /*唤醒该线程*/
                    object.notify();
                } else {
                    try {
                        /*该线程等待*/
                        object.wait();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }
    }

    public static void main(String[] args) {
        ThreadCommunication threadCommunication = new ThreadCommunication();
        Thread thread1 = new Thread("thread1"){
            @Override
            public void run() {
               threadCommunication.odd();
            }
        };
        Thread thread2 = new Thread("thread2"){
            @Override
            public void run() {
                threadCommunication.even();
            }
        };

        thread1.start();
        thread2.start();
    }
}
/*
* 若不用synchronized (object){} 则会抛出如下异常:java.lang.IllegalMonitorStateException
* 原因:
*   线程操作的wait()、notify()、notifyAll()方法只能在同步控制方法或同步控制块内调用。
*   如果在非同步控制方法或控制块里调用,程序能通过编译,
*   但运行的时候,将得到 IllegalMonitorStateException 异常
* */

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值