在Java中,可以通過以下方式創建多線程:
public class MyThread extends Thread {
public void run() {
// 線程執行的任務
}
}
public class Main {
public static void main(String[] args) {
MyThread thread = new MyThread();
thread.start();
}
}
public class MyRunnable implements Runnable {
public void run() {
// 線程執行的任務
}
}
public class Main {
public static void main(String[] args) {
MyRunnable myRunnable = new MyRunnable();
Thread thread = new Thread(myRunnable);
thread.start();
}
}
public class Main {
public static void main(String[] args) {
Thread thread = new Thread(() -> {
// 線程執行的任務
});
thread.start();
}
}
無論采用哪種方式,創建多線程后,可以通過調用start()方法啟動線程,并在run()方法中定義線程執行的任務。