问答题
下面的程序的功能是利用实现Runnable接口的方法来创建线程,并利用它来执行响应的一些操作。最后使得m的执行结果:100。
注意:请勿改动main()主方法和其他已有的语句内容,仅在下划线处填入适当的语句。
class ClassName implements Runnable{
int n;
_______________________{
try{
Thread. sleep (2000);
n=100;
}catch(Exception e) {}
}
public static void main(String[] args){
try{
ClassName a=new ClassName();
__________________
threadl.start();
threadl.join();
int m=a.n;
System.out.println("m="+m);
}catch(Exception e) {}
}
}
【参考答案】
public void run() Thread thread1=new Thread(a);[解析] 本题主要考查Ja......
(↓↓↓ 点击下方‘点击查看答案’看完整答案 ↓↓↓)