时间:2021-05-19
1、继承Thread类方式
这种方式适用于执行特定任务,并且需要获取处理后的数据的场景。
举例:一个用于累加数组内数据的和的线程。
public class AdditionThread extends Thread { private int sum = 0; private int[] nums; public AdditionThread(int[] nums, String threadName) { super(threadName); this.nums = nums; } @Override public void run() { for (int num : nums) { sum += num; } } public int getSum() { return sum; }}调用方式:
public class Main { public static void main(String[] args) throws InterruptedException { int[] nums = {10, 12, 15, 200, 100}; AdditionThread thread = new AdditionThread(nums, "AdditionThread"); thread.start(); thread.join(); System.out.println("sum=" + thread.getSum()); }}2、Runnable 接口方式
定义一个实现Runnable接口的类,或者直接创建一个匿名内部类,并覆盖 run() 方法。最后作为参数传给Thread的构造函数。
public class Main { public static void main(String[] args) { // 自定义的 Runnable Runnable runnable = new MyRunnable(); Thread thread = new Thread(runnable, "Runnable-Thread"); thread.start(); // 自定义匿名内部类 new Thread(() -> { System.out.println("Inner class"); }).start(); } static class MyRunnable implements Runnable { @Override public void run() { System.out.println("MyRunnable"); } }}3、 Callable 接口方式
Callable 接口与 Runnable 接口的区别:
(1)Callable 的方法为call(),Runnable的方法为run()。
(2)Callable 的方法由返回值,Runnable 没有。
(3)Callable 的方法声明的Exception,Runnable的没有。
public class Main { public static void main(String[] args) { MyCallable myCallable = new MyCallable(); FutureTask<String> task = new FutureTask<>(myCallable); Thread thread = new Thread(task, "FutureTask"); thread.start(); try { // 通过get方法获取返回值 String result = task.get(); System.out.println(result); } catch (InterruptedException | ExecutionException e) { e.printStackTrace(); } } static class MyCallable implements Callable<String> { @Override public String call() throws Exception { // 模拟超时操作 Thread.sleep(1000); return "OK"; } }}4、线程池方式
我们可以通过 ThreadPoolExecutor 类的构造函数来创建线程池,也可以通过Executors工厂方法来创建,如
// 创建固定线程数的线程池Executors.newFixedThreadPool(); // 创建只有一个核心线程的线程池Executors.newSingleThreadExecutor();// 创建一个没有核心线程,但可以缓存线程的线程池Executors.newCachedThreadPool();// 创建一个适用于执行定时任务的线程池Executors.newScheduledThreadPool();在创建线程池时,最好传入 ThreadFactory 参数,指定线程池所创建线程的名称。这样有利于分析定位可能存在的问题。
public class Main { private static final ExecutorService SERVICE = Executors.newFixedThreadPool(5, new BasicThreadFactory("My-Thread")); public static void main(String[] args) { // 打印线程的名字 System.out.println("main thread name:" + Thread.currentThread().getName()); SERVICE.execute(() -> { System.out.println("Hello thread pool."); // 打印线程池里的线程的名字 System.out.println("thread name:" + Thread.currentThread().getName()); }); } static class BasicThreadFactory implements ThreadFactory { private final AtomicInteger threadNumber = new AtomicInteger(0); private final String basicName; public BasicThreadFactory(String basicName) { this.basicName = basicName; } @Override public Thread newThread(Runnable runnable) { Thread thread = new Thread(runnable); String name = this.basicName + "-" + threadNumber.incrementAndGet(); thread.setName(name); return thread; } }}以上就是java 创建线程的四种方式的详细内容,更多关于java 创建线程的资料请关注其它相关文章!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
java有以下四种创建多线程的方式1:继承Thread类创建线程2:实现Runnable接口创建线程3:使用Callable和FutureTask创建线程4:使
Java通过Executors提供四种线程池,分别为:newCachedThreadPool创建一个可缓存线程池,如果线程池长度超过处理需要,可灵活回收空闲线程
Java实例化的几种方法总结Java创建有四种方式:(1)用new语句创建对象,这是最常用的创建对象方法。(2)运用反射手段,调用Java.lang.Class
本文介绍了浅谈Java的两种多线程实现方式,分享给大家。具有如下:一、创建多线程的两种方式Java中,有两种方式可以创建多线程:1通过继承Thread类,重写T
Java创建线程主要有三种方式:继承Thread类创建线程、实现Runnable接口创建线程和实现Callable和Future创建线程。继承Thread类pu