java synchronized 示例

    运行main函数实际上运行了一个线程,当在main中运行子线程时,两个线程同时运行,所以有时涉及到同步与互斥,下面程序显示这种情况。

class WN{
    public static void main(String[] args){
    ThreadB b=new ThreadB();
    b.start();
    System.out.println("b is start....");
    synchronized(b)
    {
        try{
        System.out.println("Waiting for b to complete...");
        b.wait();
        System.out.println("Completed.Now back to main thread");
        }catch (InterruptedException e){}
        }
        System.out.println("Total1 is :"+b.total);
    }
}
class ThreadB extends Thread {
    int total;
    public void run(){
        try {
            this.sleep(1000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        synchronized(this){
            System.out.println("ThreadB is running..");
        for (int i=0;i<100000;i++ ){
            total +=i;
        }
        System.out.println("Total2 is :"+total);
        notify();
        }
    }
}

    这里我控制子线程延迟1秒执行。

    另外notify函数是通知处于wait中的线程在notify所在的synchronized代码块执行结束后才继续运行。

    运行结果如下:

b is start....
Waiting for b to complete...
ThreadB is running..
Total2 is :704982704
Completed.Now back to main thread
Total1 is :704982704


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值