接力赛跑(多线程,线程安全)

编写

package com.Thread;

/**
 *     接力赛测试类
 * @author Administrator
 *
 */
public class Running implements Runnable{
    /**
     *     跑步
     */
    public void run(){
        synchronized (this) {    //线程安全:一次只能有一个运动员跑步    必须是同一个线程
            System.out.println(Thread.currentThread().getName()+"接过接力棒");
            for(int i=0;i<10;i++) {
                try {
                    Thread.sleep(50);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                System.out.println(Thread.currentThread().getName()+"跑了"+(i+1)*10+"米");
            }
        }
    }

/**
 *     测试类
 */
    public static void main(String[] args) {
        Running r=new Running();        //创建线程对象

        Thread a1=new Thread(r,"1号选手");
        Thread a2=new Thread(r,"2号选手");
        Thread a3=new Thread(r,"3号选手");
        Thread a4=new Thread(r,"四号选手");
        Thread a5=new Thread(r,"五号选手");
        Thread a6=new Thread(r,"六号选手");
        Thread a7=new Thread(r,"七号选手");
        Thread a8=new Thread(r,"八号选手");
        Thread a9=new Thread(r,"九号选手");
        Thread a10=new Thread(r,"十号选手");

        a1.start();
        a2.start();
        a3.start();
        a4.start();
        a5.start();
        a6.start();
        a7.start();
        a8.start();
        a9.start();
        a10.start();


    }
}

 

运行

 

转载于:https://www.cnblogs.com/zzh630/p/10505690.html

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值