多线程的一个例子

这个程序是照抄书上的例子,,《Java项目培训指南》,感觉还是很有收获,,,

import java.lang.Thread;
import java.lang.System;
import java.lang.Math;
import java.lang.InterruptedException;

public  class Thread1
{
 public static void main(String args[])
 throws java.io.IOException
 {
  System.out.println("if want to show the result,press Return ");
  MyThread thread1=new MyThread("thread1");
  MyThread thread2=new MyThread("thread2");
  thread1.start();
  thread2.start();
  char ch;
  while ((ch=(char)System.in.read())!='/n');
  thread1.tStart();
  thread2.tStart();
  while (thread1.isAlive()||thread2.isAlive())
  {

  }
  System.out.println("The thread test is end.");
 }
}
class MyThread extends Thread
{
 private boolean keepRunning=true;
 public MyThread(String id)
 {
  super(id);
 }
 void randomWait()
 {
  try
  {
   sleep((long)(3000*Math.random()));
  }
  catch(InterruptedException x)
  {
   System.out.println("Interrpted!!");
  }
 }
 public void tStart()
 {
  keepRunning=false;
 }
 public void run()
 {
  int i=0;
  while (keepRunning) i++;
  for (int j=0;j<3;j++)
  {
   randomWait();
   System.out.println("I am "+getName()+" - - I hava run "+i+" times.");
   i++;
  }
  System.out.println(getName()+" is dead!");
 }

}

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值