java线程的创建方式有哪些

58次阅读
没有评论

共计 1118 个字符,预计需要花费 3 分钟才能阅读完成。

Java 线程的创建方式有以下几种:

  1. 继承 Thread 类:创建一个继承自 Thread 类的子类,并重写 run() 方法来定义线程执行的任务。然后可以通过创建子类的实例来创建和启动线程。
class MyThread extends Thread {public void run() {// 线程执行的任务 
    }
}
MyThread thread = new MyThread();
thread.start();
  1. 实现 Runnable 接口:创建一个实现了 Runnable 接口的类,并实现其 run() 方法来定义线程执行的任务。然后可以通过创建 Runnable 实现类的实例来创建 Thread 实例,并调用 start() 方法来启动线程。
class MyRunnable implements Runnable {public void run() {// 线程执行的任务 
    }
}
MyRunnable runnable = new MyRunnable();
Thread thread = new Thread(runnable);
thread.start();
  1. 使用匿名内部类:可以在创建 Thread 对象时使用匿名内部类来实现 run() 方法。这种方式比较简洁,适用于定义较为简单的线程任务。
Thread thread = new Thread() {public void run() {// 线程执行的任务 
    }
};
thread.start();
  1. 使用 Callable 和 Future:通过创建实现 Callable 接口的类,并实现其 call() 方法来定义线程执行的任务。然后可以使用 ExecutorService 的 submit() 方法提交 Callable 任务,并返回一个 Future 对象,通过 Future 对象可以获取线程执行结果。
class MyCallable implements Callable<Integer> {public Integer call() throws Exception {// 线程执行的任务,返回一个结果 
        return 1;
    }
}
ExecutorService executor = Executors.newFixedThreadPool(1);
Future<Integer> future = executor.submit(new MyCallable());
  1. 使用线程池:可以使用 ExecutorService 来管理线程池,通过执行 Runnable 或 Callable 任务来创建线程。
ExecutorService executor = Executors.newFixedThreadPool(1);
executor.execute(new Runnable() {public void run() {// 线程执行的任务 
    }
});

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-13发表,共计1118字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)