需要同步的需求需要写到一个业务类里面


public class AlternationRun {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		final Business b = new Business();
		
		new Thread(new Runnable(){
			public void run(){
				for(int i=0;i<50;i++){
					b.sub(i);
				}
			}
		}).start();
		
		
		for(int i=0;i<50;i++){
			b.main(i);
		}
	}
	

	
	static class Business{
		
		private boolean isShouldSub = true;//alternate run
		public synchronized void sub(int i){
			while(!isShouldSub){//while is better than if,source code
//			if(!isShouldSub){
				try {
					this.wait();
				} catch (InterruptedException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
			}
			for(int j=0;j<10;j++){
				System.out.println("sub thread number " + j + " of " + i);
			}
			isShouldSub = false;
			this.notify();
		}
		
		public synchronized void main(int i){
			while(isShouldSub){//while is better than if,source code
//			if(isShouldSub){
				try {
					this.wait();
				} catch (InterruptedException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
			}
			for(int j=0;j<10;j++){
				System.out.println("main thread number " + j + " of " + i);
			}
			isShouldSub = true;
			this.notify();
		}
	}
}


      一个经典的面试题,子线程运行10次,主线程运行10次,如此循环往复50次。请写出程序。

Note:

1. 需要加锁的方法一定写到一个类里面(同一个业务,好处就是为同一个对象加锁才会真正的互斥,实现方便,latch门闩)!

2. 在判断变量isShouldSub时,请用while,因为个别极端情况下会出现伪唤醒,伪唤醒时使用if就会出错!!假如出现伪唤醒,while判断一次还可以再次返回判断。这一点请参考Java doc中的wait文档,里面有详细说明。



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值