[问答题] 下面的程序的功能是利用实现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();
_____
thread1.start();
thread1.join();
int m=a.n;
System.out.println("m="+m);
catch(Exception e)