欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

线程的三种创建方式

程序员文章站 2022-04-05 12:50:28
...

线程有几种创建方式?分别如何实现:
有三种创建线程的方法:
一是实现Runnable接口,然后将它传递给Thread的构造函数,创建一个Thread对象;

new Thread(new Runnable(){
    public void run(){
      //重写run方法
      }
  }).start();

二是直接继承Thread类。

new Thread(){
    public void run(){
      //重写run方法
      }
  }.start();

三使用Callable和Future创建线程。

“`
public class CallableThread implements Callable
{

    public static void main(String[] args)
    {
        CallableThread ct = new CallableThread();
        FutureTask<String> ft = new FutureTask<String>(ct);
        System.out.println(ft.get());
    }

    @Override
    public String call() throws Exception
    {

        return "线程的第三种创建方式";
    }

}