スレッド同期通信

1638 ワード


package cn.itcast;

/**
 *  
 *  100 , 10, , 50 
 */
public class TraditionalThreadCommunication {
	public static void main(String[] args) {
		final Business business = new Business();
		
		new Thread(new Runnable() {
			@Override
			public void run() {
				for (int i = 1; i <= 50; i++) {
					business.sub(i);
				}
			}
		}).start();

		for (int i = 1; i <= 50; i++) {
			business.main(i);
		}
	}
}

/**
 *  
 */
class Business {
	private boolean bShouldSub = true;

	/**
	 *  
	 * @param i
	 */
	public synchronized void sub(int i) {
		while (!bShouldSub) {
			try {
				this.wait();
			} catch (InterruptedException e) {
				e.printStackTrace();
			}
		}
		
		for (int j = 1; j <= 10; j++) {
			System.out.println("sub thread sequence of " + j + ",loop of " + i);
		}
		
		bShouldSub = false;
		this.notify();
	}

	/**
	 *  
	 * @param i
	 */
	public synchronized void main(int i) {
		while (bShouldSub) {
			try {
				this.wait();
			} catch (InterruptedException e) {
				e.printStackTrace();
			}
		}
		
		for (int j = 1; j <= 100; j++) {
			System.out
					.println("main thread sequence of " + j + ",loop of " + i);
		}
		
		bShouldSub = true;
		this.notify();
	}
}