java实现多线程的6种方式

java实现多线程基本上有5种办法,第一继承Thread类,重写run方法;第二实现继承Runnable接口,重写run方法;第三种是基于内部类的写法,同样重写run方法,实际上和前2种本质一样;第四种,基于带返回值的线程实现方式;第五种,基于线程池的方式;第六种,基于定时任务实现的多线程。

1.基于继承Thread类的实现

/**
* @Author: Cyy
* @Description: 使用继承Thread实现线程的方式
* @Date:Created in 23:33 2018/7/27
*/
public class Thread01 extends Thread {

@Override
 public void run() {
    super.run();
    System.out.println("使用继承Thread实现线程的方式。。。");
    int i=0;
    while (true) {

        System.out.println(Thread.currentThread().getName()+" is Running....");
        try {
            Thread.sleep(1000);
        } catch (InterruptedException  e) {
            e.printStackTrace();
        }
    }
}

public Thread01(String name){
    super(name);
}
public static void main(String[] args) {
    Thread01 thread_1=new Thread01("t1");
    Thread01 thread_2=new Thread01("t2");
    thread_1.start();
    thread_2.start();
    while (true) {
            System.out.println(Thread.currentThread().getName()+" is Running....");
        try {
            Thread.sleep(1000);
        } catch (InterruptedException  e) {
            e.printStackTrace();
        }
    }
 }
}

运行结果:


image.png

2.基于实现Runnable接口的实现

/**
* @Author: Cyy
* @Description:基于实现Runnable接口的实现
* @Date:Created in 23:46 2018/7/27
*/
public class Thread02 implements Runnable {
@Override
public void run() {
    System.out.println("使用实现Runnable实现线程的方式。。。");
    while(true){
            System.out.println(Thread.currentThread().getName()+" is Running....");
        try{
            Thread.sleep(1000);
        }catch (InterruptedException  e){
            e.printStackTrace();
        }
    }
}
public static void main(String[] args) {
    Thread02 thread01=new Thread02();
    Thread02 thread02=new Thread02();
    Thread thread1=new Thread(thread01,"t1");
    thread1.start();
    Thread thread2=new Thread(thread02,"t2");
    thread2.start();
    while (true) {
        System.out.println(Thread.currentThread().getName()+" is Running....");
        try {
            Thread.sleep(1000);
        } catch (InterruptedException  e) {
            e.printStackTrace();
        }
    }
  }
 }

运行结果:


image.png

3.基于内部类的实现

public class Thread00 {

    public static void main(String[] args) {

        //基于子类的实现
        new Thread("t_t"){
            @Override
            public void run() {
                super.run();
                while (true) {
                    System.out.println(Thread.currentThread().getName()+" is Running....");
                    try {
                        Thread.sleep(1000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }.start();

        //基于接口的实现
        new Thread(new Runnable() {
            @Override
            public void run() {
                while (true) {
                    System.out.println(Thread.currentThread().getName()+" is Running....");
                    try {
                        Thread.sleep(1000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        },"t_r"){}.start();

        while (true) {
                System.out.println(Thread.currentThread().getName() + " is Running...");
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
}

运行结果:


image.png

另外,还有同时实现基于子类和接口的实现的情况:

/**
 * @Author: Cyy
 * @Description: 同时基于子类和内部类
 * @Date:Created in 10:11 2018/7/28
 */
public class Thread03 {

    public static void main(String args[]){
        new Thread(new Runnable() {
            @Override
            public void run() {
                while (true) {
                    System.out.println("Runnable is running...");
                    try {
                        Thread.sleep(1000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }){
            @Override
            public void run() {
//                super.run();
                while (true) {
                    System.out.println("sub is running...");
                    try {
                            Thread.sleep(1000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }.start();

    }
}

运行结果:


image.png

这里运行结果只有子类线程的打印,原因是虽然实现了Thread类构造办法里Runnable接口的实例,但是子类已经将父类的run方法进行重写了,所以只会执行子类的办法。

4.基于带返回值的线程实现方式

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

/**
 * @Author: Cyy
 * @Description:
 * @Date:Created in 10:35 2018/7/28
 */
public class Thread04 {

    public static void main(String args[]) throws ExecutionException, InterruptedException {
        Callable<Integer> call=new Callable<Integer>() {
            @Override
            public Integer call() throws Exception {
                System.out.println("thread start...");
                Thread.sleep(2000);
                return 520;
            }
        };

        FutureTask<Integer> task=new FutureTask<>(call);
        Thread t=new Thread(task);
        t.start();
        System.out.println("线程的执行结果 "+task.get());

    }
}

运行结果:


image.png

5.基于线程池的方式。

import java.util.concurrent.Executor;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

/**
 * @Author: Cyy
 * @Description:
 * @Date:Created in 13:02 2018/7/28
 */
public class Thread05 {

    public static void main(String[] args) {

        ExecutorService threadPool= Executors.newFixedThreadPool(5);

        while (true) {
            threadPool.execute(new Runnable() {
                @Override
                public void run() {
                    System.out.println(Thread.currentThread().getName() + " is running...");
                    try {
                        Thread.sleep(1000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            });
        }
    }
}

运行结果:


image.png
  • 可以基于ExecutorService、Callable、Future实现有返回结果的多线程。
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.concurrent.*;

/**
 * @Author: Cyy
 * @Description:
 * @Date:Created in 13:16 2018/7/28
 */
public class Thread06 {

    public static void main(String[] args) throws ExecutionException, InterruptedException {
        System.out.println("----程序开始运行-----");

        Date date1=new Date();
        int taskSize=5;

        ExecutorService threadPool= Executors.newFixedThreadPool(taskSize);
        List<Future> list=new ArrayList<Future>();
        for (int i=0;i<taskSize;i++) {
            Callable c=new Callable() {
                @Override
                public Object call() throws Exception {
                    Date dateTmp1 = new Date();
                    Thread.sleep(2000);
                    Date dateTmp2 = new Date();
                    long time = dateTmp2.getTime() - dateTmp1.getTime();
                    return time;
                }
            };
            Future f = threadPool.submit(c);
            list.add(f);
        }
        threadPool.shutdown();
        for (Future f : list) {
            System.out.println(">>>"+f.get().toString());
        }
        Date date2=new Date();
        System.out.println("-----程序结束运行-----,程序运行时间【"+(date2.getTime()-date1.getTime())+"毫秒】");
    }
}

运行结果:


image.png

6.基于定时任务实现的多线程

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;

/**
 * @Author: Cyy
 * @Description:
 * @Date:Created in 16:43 2018/7/28
 */
public class Thread07 {

    private static final SimpleDateFormat format=new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");

    //定时任务
    public static void timeLapse() throws ParseException {
        new Timer().schedule(new TimerTask() {
            @Override
            public void run() {
                System.out.println("定时任务开始执行。。。。。");
            }
        },format.parse("2018-07-28 16:51:00"));

    }
    public static void timeLapseBySomeTimes(){
        new Timer().schedule(new TimerTask() {
            @Override
            public void run() {
                System.out.println(Thread.currentThread().getName()+" is Running...");
            }
        },new Date(),1000);
    }
    public static void main(String[] args) throws ParseException {
//        timeLapse();
        timeLapseBySomeTimes();
        timeLapseBySomeTimes();
        while (true) {
            System.out.println(Thread.currentThread().getName() + " is Running...");
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
}

运行结果:

image.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,056评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,842评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,938评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,296评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,292评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,413评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,824评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,493评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,686评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,502评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,553评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,281评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,820评论 3 305
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,873评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,109评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,699评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,257评论 2 341

推荐阅读更多精彩内容