我的程序中有2个线程和一个主类,每当我尝试运行它时,一个线程就会给我IllegalThreadStateException,但我不确定为什么。该程序需要进行一次乌龟和野兔比赛,乌龟可以移动10米,直到他到达300米时才停止,野兔可以移动100米,但需要90%的时间休息。以下是我的代码,如果有人可以帮助我,我将不胜感激。此外,当我确实要运行它时,Hare线程仅输出Hare:0一百万次,因此我不确定为什么会发生这种情况。
主类:
package runnerthread;
public class RunnerThread extends Thread{
public static void main(String[] args) {
System.out.println("Get set...Go!");
int hPosition = Hare.position;
int tPosition = Tortoise.position;
Thread hare = new Thread(new Hare());
Thread tortoise = new Thread(new Tortoise());
try{
while(hPosition<300 && tPosition<300){
tortoise.start();
hare.start();
Thread.sleep(300);
}
}catch(InterruptedException e){}
}
}
乌龟线:
public class Tortoise extends Thread {
static int position;
static int speed = 10;
@Override
public void run(){
position = speed + 10;
System.out.println("Tortoise: "+position);
}
}
野兔线程:
import java.util.Random;
public class Hare extends Thread{
static int position;
int speed = 100;
int restingPercent = 90;
Random random = new Random();
int randomNum = random.nextInt((100-1)+1) + 1;
@Override
public void run(){
while(position<300){
if (randomNum<=restingPercent){
System.out.println("Hare: "+position);
}else {
position+=100;
System.out.println("Hare: "+position);
}
}
}
}
答案 0 :(得分:1)
您不能在一个线程上多次调用start。线程对象不能重复使用。您可以为此目的使用Runnable。有关更多信息,请查看以下答案:https://stackoverflow.com/a/2324114/10632970