首页 > 编程语言 >Java-三种线程的实现方式

Java-三种线程的实现方式

时间:2024-10-17 21:19:43浏览次数:11  
标签:Java thread Thread Callable 线程 new 三种 public

1. 继承Thread类

可以通过创建一个新的类继承Thread类,并重写其run方法来实现线程。

class MyThread extends Thread {
    @Override
    public void run() {
        System.out.println("线程运行中:" + Thread.currentThread().getName());
        // 线程要执行的代码
    }
}

public class ThreadExample {
    public static void main(String[] args) {
        MyThread thread = new MyThread();
        thread.start(); // 启动线程
    }
}

2. 实现Runnable接口

更常见的方式是实现Runnable接口,因为它允许类继承其他类的同时实现多线程。这遵循了面向对象编程的最佳实践,即组合优于继承。

class MyRunnable implements Runnable {
    @Override
    public void run() {
        System.out.println("线程运行中:" + Thread.currentThread().getName());
        // 线程要执行的代码
    }
}

public class RunnableExample {
    public static void main(String[] args) {
        Thread thread = new Thread(new MyRunnable());
        thread.start(); // 启动线程
    }
}

3. 实现Callable接口

Callable接口与Runnable类似,但它可以返回值并抛出异常。要使用Callable,通常需要结合FutureTask使用。

import java.util.concurrent.Callable;
import java.util.concurrent.FutureTask;

class MyCallable implements Callable<Integer> {
    @Override
    public Integer call() throws Exception {
        System.out.println("Callable线程运行中:" + Thread.currentThread().getName());
        // 线程要执行的代码,并返回结果
        return 123;
    }
}

public class CallableExample {
    public static void main(String[] args) throws Exception {
        MyCallable callable = new MyCallable();
        FutureTask<Integer> futureTask = new FutureTask<>(callable);
        Thread thread = new Thread(futureTask);
        thread.start(); // 启动线程

        // 获取callable线程的执行结果
        Integer result = futureTask.get();
        System.out.println("Callable线程结果:" + result);
    }
}

在实际应用中,选择哪种方式来实现线程通常取决于具体需求。如果需要返回结果或抛出异常,那么Callable可能是更好的选择。如果不需要这些功能,Runnable通常是首选,因为它更简单,也更灵活。继承Thread类的方式现在较少使用,因为它限制了类的继承结构。

标签:Java,thread,Thread,Callable,线程,new,三种,public
From: https://blog.csdn.net/weixin_57091309/article/details/143009745

相关文章

  • 归并排序(Java)
    思想:基本思想是使用递归将数组不断分成两半,直到分成的小组都只剩下一个元素为止,随后分别开始排序,将排序好的数组合并在一起。归并排序使用了分治(DivideandConquer)的思想。包括以下三个步骤:划分(Divide):将原问题分解成几个规模较小的相同问题。解决(Conquer):递归求解这些子问......