使用Runnable接口創(chuàng)建線(xiàn)程
實(shí)現(xiàn)Runnable接口的類(lèi)必須使用Thread類(lèi)的實(shí)例才能創(chuàng)建線(xiàn)程。通過(guò)Runnable接口創(chuàng)建線(xiàn)程分為兩步。
1.將實(shí)現(xiàn)Runnable接口的類(lèi)實(shí)例化。
2. 建立一個(gè)Thread對(duì)象,并將第一步實(shí)例化后的對(duì)象作為參數(shù)傳入Thread類(lèi)的構(gòu)造方法。
最后通過(guò)Thread類(lèi)的start方法建立線(xiàn)程。
下面的代碼演示了如何使用Runnable接口來(lái)創(chuàng)建線(xiàn)程package mythread;
2.
3.public class MyRunnable implements Runnable
4.{
5. public void run()
6. {
7. System.out.println(Thread.currentThread()。getName());
8. }
9. public static void main(String[] args)
10. {
11. MyRunnable t1 = new MyRunnable();
12. MyRunnable t2 = new MyRunnable();
13. Thread thread1 = new Thread(t1, "MyThread1");
14. Thread thread2 = new Thread(t2);
15. thread2.setName("MyThread2");
16. thread1.start();
17. thread2.start();
18. }
19.}
上面代碼的運(yùn)行結(jié)果如下
MyThread1
MyThread2
舉例Java多線(xiàn)程的學(xué)習(xí)又更近一步了。
相關(guān)推薦:
各地2012年計(jì)算機(jī)等級(jí)考試費(fèi)用匯總
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |