這篇文章帶給大家的內容是關於Java中創建線程的3種方法介紹(程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
在java中如果要創建線程的話,一般有3種方法:
#繼承Thread類別;
1. 繼承Thread類別
繼承Thread類別的話,必須重寫run方法,在run方法中定義需要執行的任務。class MyThread extends Thread{ private static int num = 0; public MyThread(){ num++; } @Override public void run() { System.out.println("主动创建的第"+num+"个线程"); } }
public class Test { public static void main(String[] args) { MyThread thread = new MyThread(); thread.start(); } } class MyThread extends Thread{ private static int num = 0; public MyThread(){ num++; } @Override public void run() { System.out.println("主动创建的第"+num+"个线程"); } }
public class Test { public static void main(String[] args) { System.out.println("主线程ID:"+Thread.currentThread().getId()); MyThread thread1 = new MyThread("thread1"); thread1.start(); MyThread thread2 = new MyThread("thread2"); thread2.run(); } } class MyThread extends Thread{ private String name; public MyThread(String name){ this.name = name; } @Override public void run() { System.out.println("name:"+name+" 子线程ID:"+Thread.currentThread().getId()); } }
2. 實作Runnable介面
在Java中建立執行緒除了繼承Thread類別之外,還可以透過實作Runnable介面來實現類似的功能。實作Runnable介面必須重寫其run方法。 下面是一個例子:public class Test { public static void main(String[] args) { System.out.println("主线程ID:"+Thread.currentThread().getId()); MyRunnable runnable = new MyRunnable(); Thread thread = new Thread(runnable); thread.start(); } } class MyRunnable implements Runnable{ public MyRunnable() { } @Override public void run() { System.out.println("子线程ID:"+Thread.currentThread().getId()); } }
3. 使用Callable和Future建立執行緒
和Runnable介面不一樣,Callable介面提供了一個call()方法作為執行緒執行體,call()方法比run()方法功能強大。 建立並啟動有傳回值的執行緒的步驟如下:
public class Main { public static void main(String[] args){ MyThread3 th=new MyThread3(); //使用Lambda表达式创建Callable对象 //使用FutureTask类来包装Callable对象 FutureTask<Integer> future=new FutureTask<Integer>( (Callable<Integer>)()->{ return 5; } ); new Thread(task,"有返回值的线程").start();//实质上还是以Callable对象来创建并启动线程 try{ System.out.println("子线程的返回值:"+future.get());//get()方法会阻塞,直到子线程执行结束才返回 }catch(Exception e){ ex.printStackTrace(); } } }
三種建立執行緒方式比較:
PS:一般建議採用實作介面的方式來建立多執行緒
以上是Java中創建線程的3種方法介紹(程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!