程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> java多線程編程之應用runnable接口創立線程

java多線程編程之應用runnable接口創立線程

編輯:關於JAVA

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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved