博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java中thread的start()和run()的区别
阅读量:6087 次
发布时间:2019-06-20

本文共 1669 字,大约阅读时间需要 5 分钟。

1.start()方法来启动线程,真正实现了多线程运行,这时无需等待run方法体代码执行完毕而直接继续执行下面的代码:

通过调用Thread类的start()方法来启动一个线程, 这时此线程是处于就绪状态, 并没有运行。 然后通过此Thread类调用方法run()来完成其运行操作的, 这里方法run()称为线程体, 它包含了要执行的这个线程的内容, Run方法运行结束, 此线程终止, 而CPU再运行其它线程,

 

2.run()方法当作普通方法的方式调用,程序还是要顺序执行,还是要等待run方法体执行完毕后才可继续执行下面的代码:

而如果直接用Run方法, 这只是调用一个方法而已, 程序中依然只有主线程--这一个线程, 其程序执行路径还是只有一条, 这样就没有达到写线程的目的。

 

 

---------------------------------------------------------------------------

package waitio;public class Thread1 extends Thread{    public static void main(String[] args) {        Thread1 one = new Thread1();        one.setName("one : ");        Thread1 two = new Thread1();        two.setName("two : ");         //线程1开启        one.start();         //线程2 开启        two.start();          /*   one.run(); //这是方法调用,而不是开启一个线程        two.run();*/    }    @Override    public void run() {        super.run();        for (int i = 0; i < 10; i++) {            System.out.println(currentThread().getName()+"       --      "+i);        }    }}

输出:

one :      --      0

one :      --      1
one :      --      2
one :      --      3
one :      --      4
one :      --      5
one :      --      6
two :      --      0
two :      --      1
two :      --      2
two :      --      3
two :      --      4
two :      --      5
two :      --      6
two :      --      7
two :      --      8
two :      --      9
one :      --      7
one :      --      8
one :      --      9

 

In Example one the threads will run sequentially:

first, thread number one runs, when it exits the thread number two starts.

In Example two both threads start and run simultaneously.

Conclusion: the start() method call run() method asynchronously (does not wait for any result, just fire up an action), while we run run() method synchronously - we wait when it quits and only then we can run the next line of our code.

转载于:https://www.cnblogs.com/cici-new/p/3581707.html

你可能感兴趣的文章
java nio文件传输例子
查看>>
linux 启动项
查看>>
我的友情链接
查看>>
No bundle URL present
查看>>
Sencha Touch 和 jQuery Mobile 的比较
查看>>
win732 安装hadoop
查看>>
ztreeSearch
查看>>
VSAN API 探索第 1 部分 – 启用 VSAN 群集
查看>>
我的友情链接
查看>>
svn+apache 安装和使用 并与Nginx 整合
查看>>
简易javascript遮罩层提示框
查看>>
华为防火墙USG6330 NAT 配置
查看>>
MYSQL性能调优与架构设计学习笔记 - 基础篇 MYSQL基本介绍
查看>>
围炉夜话
查看>>
NVL,NVL2,NULLIF,COALESCE
查看>>
.gitignore使用规则
查看>>
ubuntu 下完美解决 mysql 乱码的问题
查看>>
分析Windows和Linux动态库
查看>>
apache和nginx的性能分析
查看>>
php-fpm常用配置
查看>>