java多線程編程之應用runnable接口創立線程。本站提示廣大學習愛好者:(java多線程編程之應用runnable接口創立線程)文章只能為提供參考,不一定能成為您想要的結果。以下是java多線程編程之應用runnable接口創立線程正文
1.將完成Runnable接口的類實例化。
2.樹立一個Thread對象,並將第一步實例化後的對象作為參數傳入Thread類的結構辦法。
最初經由過程Thread類的start辦法樹立線程。
上面的代碼演示了若何應用Runnable接口來創立線程:
package mythread;
public class MyRunnable implements Runnable
{
public void run()
{
System.out.println(Thread.currentThread().getName());
}
public static void main(String[] args)
{
MyRunnable t1 = new MyRunnable();
MyRunnable t2 = new MyRunnable();
Thread thread1 = new Thread(t1, "MyThread1");
Thread thread2 = new Thread(t2);
thread2.setName("MyThread2");
thread1.start();
thread2.start();
}
}
[/code]
下面代碼的運轉成果以下:
MyThread1
MyThread2