JAVA中有许多方法可以实现多线程,本例中笔者想介绍一种方法来实现多线程,既通过继承Thread类的方法实现多线程.
文章目录
题目重述
编写 TwoThreadsTest.java 程序文件来实现多线程.
问题分析以及求解思路
待完善(请耐心等待)
程序代码
class SimpleThread extends Thread
{
public SimpleThread(String str){super(str);}
public void run()
{
for(int i=0;i<10;i++)
{
System.out.println(i+" "+getName());
try{sleep((int)(Math.random()*1000));}
catch (InterruptedException e){}
}
System.out.println("DONE! "+getName());
}
}
public class TwoThreadsTest
{public static void main(String[] args)
{
new SimpleThread("Go to Beijing??").start();
new SimpleThread("Stay here!!").start();
}
}