栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

java 实现多线程的五种方式

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

java 实现多线程的五种方式

1、继承Thread类,实现“T1”线程和主线程交替之行

public class MyTest1 extends Thread{
    @Override
    public void run() {

        for (int i = 0; i <10 ; i++) {
            try {
                TimeUnit.MILLISECONDS.sleep(1);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            System.out.println("T1");

        }
    }



    public static void main(String[] args) {
        new MyTest1().start();
        for (int i = 0; i <10 ; i++) {
            try {
                TimeUnit.MILLISECONDS.sleep(1);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            System.out.println("main");
        }


    }
}

2、实现Runable接口

public class MyTest2 implements Runnable{
    @Override
    public void run() {
        for (int i = 0; i <10 ; i++) {
            try {
                TimeUnit.MILLISECONDS.sleep(1);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            System.out.println("T1");
        }
    }

    public static void main(String[] args) {
        new Thread(new MyTest2()).start();
        for (int i = 0; i <10 ; i++) {
            try {
                TimeUnit.MILLISECONDS.sleep(1);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            System.out.println("main");
        }
    }
}

3、实现Callable接口

public class MyTest3 implements Callable {
    @Override
    public String call() throws Exception {
        for (int i = 0; i <10 ; i++) {
                try {
                    TimeUnit.MILLISECONDS.sleep(1);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                System.out.println("T1");
            }
        return "success";
    }

    public static void main(String[] args) throws ExecutionException, InterruptedException {

        Thread t = new Thread(new FutureTask(new MyTest3()));
        t.start();
        
        for (int i = 0; i <10 ; i++) {
            try {
                TimeUnit.MILLISECONDS.sleep(1);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            System.out.println("main");
        }
    }


}

4、利用lambda表达式

 public static void main(String[] args) throws ExecutionException, InterruptedException {
        new Thread(()->{
            for (int i = 0; i <10 ; i++) {
                try {
                    TimeUnit.MILLISECONDS.sleep(1);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                System.out.println("T1");

            }
        }).start();

        for (int i = 0; i <10 ; i++) {
            try {
                TimeUnit.MILLISECONDS.sleep(1);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            System.out.println("main");
        }
    }

5、利用线程池

 public static void main(String[] args) throws ExecutionException, InterruptedException {
        ExecutorService service = Executors.newCachedThreadPool();
        Future f = service.submit(new MyTest3());
        String s = f.get();
//打印出callable的返回值
        System.out.println(s);
        service.shutdown();
        for (int i = 0; i <10 ; i++) {
            try {
                TimeUnit.MILLISECONDS.sleep(1);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            System.out.println("main");
        }
    }
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/865383.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号