创建线程几种方法

继承Thread

public class TestThread {
    public static void main(String[] args) throws Exception {
        Thread t1 = new MyThread();
        Thread t2 = new MyThread();
        t1.start();
        t2.start();
    }
}

class MyThread extends Thread {
    @Override
    public void run() {
            for (int i = 0; i < 10; i++) {
                System.out.println(Thread.currentThread().getName() + "-MyThread -" + i);
            }
    }
}

实现 Runnable 接口

public class TestThread {
    public static void main(String[] args) throws Exception {
        Thread t1 = new Thread(new MyRunnable ());
        Thread t2 = new Thread(new MyRunnable ());
        t1.start();
        t2.start();
    }
}

class MyRunnable implements Runnable {
    @Override
    public void run() {
        for (int i = 0; i < 10; i++) {
            for (int i = 0; i < 10; i++) {
                System.out.println(Thread.currentThread().getName() + "-MyRunnable -" + i);
            }
        }
    }
}

匿名内部类

public class TestThread {
    public static void main(String[] args) throws Exception {
        new Thread(new Runnable() {
            @Override
            public void run() {
                for (int i = 0; i < 10; i++) {
                    System.out.println(Thread.currentThread().getName()  + i);
                }
            }
        },"Thread1").start();
        new Thread(new Runnable() {
            @Override
            public void run() {
                for (int i = 0; i < 10; i++) {
                    System.out.println(Thread.currentThread().getName()  + i);
                }
            }
        },"Thread2").start();
    }
}

函数式接口(java8新特性)

public class TestThread {
    public static void main(String[] args) throws Exception {
        new Thread(() -> {
            for (int i = 0; i < 10; i++) System.out.println(Thread.currentThread().getName() + "-CallableDemo-" + i);
        }, "Thread1").start();
    }
}

实现Callable接口(concurrent包下新特性)

Callable接口实现call方法,配合FutureTask使用,有返回值,返回泛型指定的数据类型
与Runable不同的是

  • 实现的是call()
  • 有可能抛异常的
  • 有返回值
  • 需要FutureTask
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.FutureTask;

class Mythread implements Callable<Integer>
{
    @Override
    public Integer call() throws Exception
    {
        System.out.println("*****come in call method()");
        return 1024;
    }
}


public class CallableDemo
{
    public static void main(String[] args) throws ExecutionException, InterruptedException
    {
        FutureTask<Integer> futureTask = new FutureTask(new Mythread());

        new Thread(futureTask,"A").start();

        Integer result = futureTask.get();
        System.out.println(result);
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

orange大数据技术探索者

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值