实现多线程的两种方式

Posted 二十年后20

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实现多线程的两种方式相关的知识,希望对你有一定的参考价值。

1.继承Thread类。

源码结构:public class Thread implements Runnable

从中可以看出Thread类实现了Runnable,由于java中不支持多继承,所以实现多线程时,可以采用实现Runnable的方式。

2.实现Runnable接口。

 

注意一下声明与调用不仅仅只是new一下,start一下,而是new两下,start一下:

public class MyRunnable implements Runnable {
    public void run() {
        System.out.println("运行中!");
    }
}
public class MainTest {

    public static void main(String[] args) {
        Runnable runnable = new MyRunnable();
        Thread thread = new Thread(runnable);
        thread.start();
    //    runnable.run();这种调用不会启动线程,只是单纯的方法调用
        System.out.println("运行结束!");
    }

}

 

以上是关于实现多线程的两种方式的主要内容,如果未能解决你的问题,请参考以下文章

java多线程编程的两种方式

1-多线程的两种实现方式

Java 实现多线程的两种方式

实现多线程的两种方式

实现多线程的两种方式

2.常用的实现多线程的两种方式