您好,欢迎来到微智科技网。
搜索
您的当前位置:首页三种创建线程的方式

三种创建线程的方式

来源:微智科技网

一、创建线程的三种方式

方式1:直接new Thread()线程出来

@Test
    public void createThread1(){
        Thread t1 = new Thread(){
            public void run(){
                for(int i=0;i<100;i++){
                    System.out.println("创建线程的方式1"+i);
                }
            }
        };
        t1.start();
    }

方式2:将Runnable作为参数传到Thread对象中

@Test
    public void createThread2(){
        Thread t2 = new Thread(new Runnable(){
            @Override
            public void run() {
                System.out.println("创建线程的方式2");
            }

        });
        t2.start();
    }

方式3:使用有返回值的线程运行方式

定义类实现callable接口

class CallableImpl implements Callable{

    @Override
    public String call() throws Exception {
        System.out.println("线程执行的方式");
        return "这是线程的放回值";
    }

}

使用callable接口的实现类作为FutureTask的参数

/**
     * @throws ExecutionException 
     * @throws InterruptedException 
     * @Description: 创建线程的方式3
     * @date 2017年5月18日 上午12:18:32 
     */
    @Test
    public void createThread3() throws InterruptedException, ExecutionException{
        FutureTask<String> futureTask = new FutureTask(new CallableImpl());
        Thread t3 = new Thread(futureTask);
        t3.start();
        System.out.println(futureTask.get());

    }

第三种方式是有返回值的

因篇幅问题不能全部显示,请点此查看更多更全内容

Copyright © 2019- 7swz.com 版权所有 赣ICP备2024042798号-8

违法及侵权请联系:TEL:199 18 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务