使用线程模拟多人爬山

 

//Runnable的实现类,实现爬山的功能
 2 public class ClimbThread implements Runnable{
 3     private int time;
 4     private int num = 5;
 5     
 6     public ClimbThread(int time) {
 7         this.time = time;
 8     }
 9 
10     public void run() {
11         while(true) {
12             if(num == 0) {
13                 System.out.println(Thread.currentThread().getName()+"爬完了!");
14                 break;
15             }
16             System.out.println(Thread.currentThread().getName()+"爬完100米!");
17             try {
18                 Thread.sleep(time);
19             } catch (InterruptedException e) {
20                 // TODO Auto-generated catch block
21                 e.printStackTrace();
22             }
23             num--;
24         }
25         
26     }
27 }
Runnable的实现类,实现爬山的功能
 
 1 //测试类
 2 public class Test {
 3     public static void main(String[] args) {
 4         ClimbThread user = new ClimbThread(500);
 5         ClimbThread user1 = new ClimbThread(1200);
 6         Thread thread = new Thread(user,"年轻人");
 7         Thread thread1 = new Thread(user1,"老年人");
 8         thread.start();
 9         thread1.start();
10     }
11 }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值