我有这个类,我在其中运行了一个 for 循环 10 次。此类实现 Runnable 接口。现在在 main() 我创建了 2 个线程。现在两者都将循环运行到 10 点。但我想检查每个线程的循环计数。如果 t1 超过 7 则让它休眠 1 秒以让 t2 完成。但是如何实现呢?请看代码。我尝试过,但看起来完全愚蠢。只是如何检查线程的数据???
class SimpleJob implements Runnable {
int i;
public void run(){
for(i=0; i<10; i++){
System.out.println(Thread.currentThread().getName()+" Running ");
}
}
public int getCount(){
return i;
}
}
public class Threadings {
public static void main(String [] args){
SimpleJob sj = new SimpleJob();
Thread t1 = new Thread(sj);
Thread t2 = new Thread(sj);
t1.setName("T1");
t2.setName("T2");
t1.start();
try{
if(sj.getCount() > 8){ // I know this looks totally ridiculous, but then how to check variable i being incremented by each thread??
System.out.println("Here");
Thread.sleep(2000);
}
}catch(Exception e){
System.out.println(e);
}
t2.start();
}
}
请帮忙