第15周—多线程(作业1)

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

package aa;

public class Example1{

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Text tul = new Text();

        Thread people1 = new Thread(tul,"people1");
        Thread people2 = new Thread(tul,"people2");
        Thread people3 = new Thread(tul,"people3");
        Thread people4 = new Thread(tul,"people4");
        Thread people5 = new Thread(tul,"people5");
        Thread people6 = new Thread(tul,"people6");
        Thread people7 = new Thread(tul,"people7");
        Thread people8 = new Thread(tul,"people8");
        Thread people9 = new Thread(tul,"people9");
        Thread people10 = new Thread(tul,"people10");
        people1.start();
        people2.start();
        people3.start();
        people4.start();
        people5.start();
        people6.start();
        people7.start();
        people8.start();
        people9.start();
        people10.start();
    }
}

class Text implements Runnable{
    private int Num = 0;
    public void run(){
        Cross();
    } 

    public  synchronized void Cross(){
        try {
            Thread.sleep(5000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        Num++;
        System.out.println(Thread.currentThread().getName()+" have  Crossed  the  river !"+" This  is "+Num+"th");

    }
}

这里写图片描述

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值