在Java中,使用匿名內部類創建線程的步驟如下:
Thread
對象,并使用匿名內部類作為參數傳遞給Thread
的構造函數。run()
方法,定義線程的執行邏輯。start()
方法啟動線程。以下是示例代碼:
public class Main {
public static void main(String[] args) {
Thread thread = new Thread(new Runnable() {
@Override
public void run() {
// 線程執行的邏輯
System.out.println("Thread running");
}
});
thread.start();
}
}
在上面的示例中,使用匿名內部類實現了Runnable
接口,并在run()
方法中定義了線程的執行邏輯。然后,將匿名內部類對象傳遞給Thread
的構造函數創建了一個線程對象。最后,調用start()
方法啟動線程。