今天图老师小编要向大家分享个[JAVA100例]062、多线程教程,过程简单易学,相信聪明的你一定能轻松get!
【 tulaoshi.com - 编程语言 】
/**
* pTitle: 创建多线程/p
* pDescription: 使用构造器,创建多线程。/p
* pCopyright: Copyright (c) 2003/p
* pFilename: 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("n"+count+" thread is end!");
}
}
}
来源:http://www.tulaoshi.com/n/20160219/1613985.html
看过《[JAVA100例]062、多线程》的人还看了以下文章 更多>>