java synchronized 示例_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、付费专栏及课程。

余额充值