WEB开发网
开发学院WEB开发Jsp [JAVA100例]062、多线程 阅读

[JAVA100例]062、多线程

 2008-01-05 19:18:05 来源:WEB开发网   
核心提示:/** * <p>Title: 创建多线程</p> * <p>Description: 使用构造器,创建多线程,[JAVA100例]062、多线程,</p> * <p>Copyright: Copyright (c) 2003</p> * <

  /**
 * <p>Title: 创建多线程</p>
 * <p>Description: 使用构造器,创建多线程。</p>
 * <p>Copyright: Copyright (c) 2003</p>
 * <p>Filename: multiThread.java</p>
 * @version 1.0
 */
public class multiThread
{
/**
 *<br>方法说明:主方法
 *<br>输入参数:
 *<br>返回类型:
 */
 public static void main (String [] args){
   new multiThread();
  }
/**
 *<br>方法说明:构造器。构造多个线程,并启动它们。
 *<br>输入参数:
 *<br>返回类型:
 */
  multiThread(){
   for (int i = 0; i < 5; i++){
    System.out.PRintln("Creating thread "+i);
    innThread mt = new innThread (i);
    mt.start ();
   }
  }
/**
 *<br>类说明:内部类通过继续Thread实现线程
 *<br>类描述:通过构造器参数,区别不同的线程
 */  
 class innThread extends Thread
 {
  int count;
  innThread(int i){
   count=i;
  }
/**
 *<br>方法说明:内部类线程主体,继续Thread必须实现的方法。
 *<br>输入参数:
 *<br>返回类型:
 */
  public void run ()
  {
   System.out.println("now "+count+" thread is beginning..... ");
   try{
    sleep(10-count);
   }catch(Exception e){
    System.out.println(e);
   }
   System.out.println(" "+count+" thread is end!");
  }
 }
}

Tags:JAVA 线程

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接