[問答題] 下面的程序的功能是利用實現Runnable接口的方法來創(chuàng)建線程,并利用它來執(zhí)行響應的一些操作。最后使得m的執(zhí)行結果:100。 注意:請勿改動mai
[問答題] 下面的程序的功能是利用實現Runnable接口的方法來創(chuàng)建線程,并利用它來執(zhí)行響應的一些操作。最后使得m的執(zhí)行結果: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);
參考解析:本題主要考查Java中對線程的創(chuàng)建知識。解答本題的關鍵是熟練掌握如何創(chuàng)建線程的知識。一般情況下,創(chuàng)建線程的方法是:(1)通過繼承Thread類創(chuàng)建線程。(2)通過向Thread()構造方法傳遞Runnable對象來創(chuàng)建線程。在本題中,public void run()聲明語句是用來聲明線程體的,這是創(chuàng)建一個線程的必須做的。 Thread thread1=new Thread(a);語句的功能是通過向Thread()構造方法傳遞Runnable對象a來生成一個對象thread1。
詞條內容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學等領域),建議您咨詢相關領域專業(yè)人士。