多线程之模拟多人过山洞

 编写多线程程序,模拟多个人通过一个山洞。这个山洞每次只能通过一个人,每个人通过山洞的时间为2秒(sleep)。随机生成10个人,都要通过此山洞,用随机值对应的字符串表示人名,打印输出每次通过山洞的人名。提示:利用线程同步机制,过山洞用一条输出语句表示,该输出语句打印输出当前过山洞的人名,每个人过山洞对应一个线程,哪个线程执行这条输出语句,就表示哪个人过山洞。

import java.util.LinkedHashSet;
import java.util.Set;

public class GuoShanDong implements Runnable{
	 private static int wait=0;   
	    public void run() {	        
	             wait= wait+2000;	                
	            try
	                {
	                    Thread.sleep(wait);
	                }
	            catch (InterruptedException e)
	                {
	                    e.printStackTrace();
	                }	           
	 System.out.println(Thread.currentThread().getName() +" 过山洞");

}
public static void main(String[] args) {
	
	
	   String ary[] ={"A","B","C","D","E","F","G","H","I","J"};
	    
       
       GuoShanDong gsd = new GuoShanDong();
            
       Set<Integer> set=new LinkedHashSet<Integer>();
       while(true){
       if(set.size() == 10){
       break;
       }  
       
       //乱序排列(随机)
       int a=(int) (Math.random()*10);    
       set.add(a);
       }
       
       for(int b:set){   
       Thread th = new Thread(gsd, ary[b]);  
        th.start();
       }                        
	}
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值