有三个线程ID分别是A、B、C,用多线编程实现在屏幕上循环打印10次ABCABC.(精简版)...

      写这篇文章让我想起了"茴香豆的茴字有几种写法"。前面http://lilywangcn.iteye.com/blog/793898写了一种解决方法,下面的思想和前面一样,只是结构上简化了一些。

public class Main {
	private static Object monitor=new Object();
	private static int flag=1;
	public static void main(String[] args){
		new Thread(){
			public void run(){
				for(int i=0;i<10;i++){
					synchronized(monitor){
						while(flag!=1){
							try{
								monitor.wait();
							}catch(InterruptedException e){
								
							}
						}
					}
					try{
						System.out.print("A");	
					}finally{
						synchronized(monitor){
							flag=2;
							monitor.notifyAll();
						}
					}
				}
			}
		}.start();
		
		new Thread(){
			public void run(){
				for(int i=0;i<10;i++){
					synchronized(monitor){
						while(flag!=2){
							try{
								monitor.wait();
							}catch(InterruptedException e){
								
							}
						}
					}
					try{
					System.out.print("B");	
					}finally{
						synchronized(monitor){
							flag=3;
							monitor.notifyAll();
						}
					}
				}	
			}
		}.start();
		
		new Thread(){
			public void run(){
				for(int i=0;i<10;i++){
					synchronized(monitor){
						while(flag!=3){
							try{
								monitor.wait();
							}catch(InterruptedException e){
								
							}
						}
					}
					try{
						System.out.print("C");	
					}finally{
						synchronized(monitor){
							flag=1;
							monitor.notifyAll();
						}
					}
				}
			}
		}.start();	
	}
}
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值