Java Thread类的最终void join()方法与示例

线程类最终void join() (Thread Class final void join())

  • This method is available in package java.lang.Thread.join().

    软件包java.lang.Thread.join()中提供了此方法。

  • join() method is applicable when a thread wants to wait until completing some other thread then we should go for join() method of Thread class.

    join()方法 ,当一个线程要等到完成一些其他线程那么我们就应该去参加()Thread类的方法,方法是适用的。

  • This method is not static so we cannot access this method with the class name too.

    此方法不是静态的,因此我们也无法使用类名访问此方法。

  • This method is final we can't override this method in child class.

    此方法是最终方法,我们不能在子类中覆盖此方法。

  • The return type of this method is void so it does not return anything.

    此方法的返回类型为void,因此它不返回任何内容。

  • This method throws an InterruptedException so it is needed to handle exception either by try-catch or throws otherwise we will get a compile-time error.

    该方法抛出InterruptedException异常,因此需要通过try-catch或throws来处理异常,否则我们将获得编译时错误。

For example: We have three threads [t1 – PreparedExamPaper ] ,[t2 – PrintingExamPaper],[t3- DistributingExamPaper] so will see what will happen.

例如:我们有三个线程[ t1 – PreparedExamPaper],[ t2 – PrintingExamPaper],[ t3 -DistributingExamPaper],因此将看到会发生什么。

Let suppose if a thread t1 executes, t2.join(), then thread t1 will entered into waiting for the state until t2 completes once t2 completes then t1 will continue its execution.

假设如果线程t1执行t2.join() ,则线程t1将进入等待状态,直到t2完成,一旦t2完成,则t1将继续执行。

Similarly, If a thread t2 executes, t3.join() then thread t2 will entered into waiting for the state until t3 completes once t3 completes, then t2 will continue its execution.

同样,如果线程t2执行t3.join(),则线程t2将进入等待状态,直到t3完成后t3完成,然后t2将继续执行。

Syntax:

句法:

    final void join(){
}

Parameter(s):

参数:

When we write t2.join(), so this line means currently executing thread will stop its execution and that thread will wait() for t2 completion.

当我们编写t2.join()时 ,此行表示当前正在执行的线程将停止执行,并且该线程将等待( 2)完成t2 。

Return value:

返回值:

The return type of this method is void, it does not return anything.

此方法的返回类型为void ,它不返回任何内容。

Java程序演示join()方法的示例 (Java program to demonstrate example of join() method)

/*  We will use Thread class methods so we are importing 
the package but it is not mandated because 
it is imported by default
*/
import java.lang.Thread;
class MyThread extends Thread {
//Override run() method of Thread class 
public void run() {
for (int i = 0; i < 5; ++i)
System.out.println("We are in MyThread");
try {
Thread.sleep(500);
} catch (Exception ex) {
System.out.println(ex.getMessage());
}
}
}
class MainThread {
public static void main(String[] args) throws Exception {
MyThread mt = new MyThread();
mt.start();
/* Note -1*/
mt.join();
for (int j = 0; j < 5; ++j)
System.out.println("We are in MainThread");
}
}

Note 1: If we comment /*mt.join()*/ in the above program then both threads will execute simultaneously we can't expect exact execution order and then we can't expect exact output.

注1:如果在上面的程序中注释/*mt.join()*/,那么两个线程将同时执行,我们不能期望确切的执行顺序,也不能期望精确的输出。

Output

输出量

E:\Programs>javac MainThread.java
E:\Programs>java MainThread
We are in MyThread
We are in MyThread
We are in MyThread
We are in MyThread
We are in MyThread
We are in MainThread
We are in MainThread
We are in MainThread
We are in MainThread
We are in MainThread

翻译自: https://www.includehelp.com/java/thread-class-final-void-join-method-with-example.aspx

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/545487.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

解决myeclipse中新导入的工程旁出现红色感叹号的问题

2019独角兽企业重金招聘Python工程师标准>>> 或许很多像我这样的java初学者在使用myeclipse时出现新导入的工程旁边有红色的感叹号。 1.问题一般就是java build path 设置不正确的问题。解决步骤如下&#xff1a; 右击工程找到Build Path——>Configure Build Pa…

层次分析法

层次分析法一、层次分析法原理二、解题步骤&#xff08;1&#xff09;层次结构模型&#xff08;2&#xff09;成对比较矩阵①成对比较矩阵&#xff08;有现成代码进行一致性检验和求权重&#xff09;②成对比较阵标度表及举例③一致性检验三、旅游性问题举例&#xff08;1&…

ORA-00997: 非法使用 LONG 数据类型

今天在创建表的时候直接用的create table XXX as select * from AAA;结果出了一个&#xff1a;ORA-00997: 非法使用 LONG 数据类型 的错误。后来查了一下&#xff0c;做下笔记&#xff1a;1、select查询语句中用到where 语句和排序时不能直接 使用数据类型为long的字段&#xf…

Redis 持久化——混合持久化

RDB 和 AOF 持久化各有利弊,RDB 可能会导致一定时间内的数据丢失,而 AOF 由于文件较大则会影响 Redis 的启动速度,为了能同时使用 RDB 和 AOF 各种的优点,Redis 4.0 之后新增了混合持久化的方式。 在开启混合持久化的情况下,AOF 重写时会把 Redis 的持久化数据,以 RDB 的…

Java ObjectInputStream readDouble()方法与示例

ObjectInputStream类readChar()方法 (ObjectInputStream Class readChar() method) readChar() method is available in java.io package. readChar()方法在java.io包中可用。 readChar() method is used to read 2 byte (i.e. 16 bit) of character from this ObjectInputStre…

sql2005(64位企业版)+weblogic9.2+win2008集群

服务器是win2008,64位&#xff0c;32gb内存&#xff0c;安装了sql2005&#xff08;64)的企业版数据库&#xff0c;中间件为weblogic9.2&#xff0c;部署了一个主服务&#xff0c;一个代理服务&#xff0c;4个节点。服务起来后&#xff0c;代理服务报错如下&#xff1a;<2011…

Oracle存储过程及函数的练习题

--存储过程、函数练习题--&#xff08;1&#xff09;创建一个存储过程&#xff0c;以员工号为参数&#xff0c;输出该员工的工资 create or replace procedure p_sxt1(v_empno in emp.empno%type, v_sal out emp.sal%type) is beginselect sal into v_sal from emp where empno…

多属性决策模型

多属性决策模型一、多属性决策模型&#xff08;1&#xff09;特点&#xff08;2&#xff09;属性值的归一化①效益型②成本型③固定型④偏离型⑤区间型⑥偏离区间型二、例题及步骤①建立数学模型②属性值归一化③对不同的属性构建成对比较矩阵并计算属性权重④计算每个公司的WA…

Redis 管道技术——Pipeline

管道技术(Pipeline)是客户端提供的一种批处理技术,用于一次处理多个 Redis 命令,从而提高整个交互的性能。 通常情况下 Redis 是单行执行的,客户端先向服务器发送请求,服务端接收并处理请求后再把结果返回给客户端,这种处理模式在非频繁请求时不会有任何问题。 但如果…

Java GregorianCalendar getMaximum()方法与示例

GregorianCalendar类的getMaximum()方法 (GregorianCalendar Class getMaximum() method) getMaximum() method is available in java.util package. getMaximum()方法在java.util包中可用。 getMaximum() method is used to get the maximum value of the given Calendar fiel…

repadmin查看域控之间的复制状态

查看域控之间的复制状态&#xff1a;repadmin /showrepl手动进行同步复制&#xff1a;repadmin /syncall更多的命令参考网址&#xff1a;http://technet.microsoft.com/zh-tw/library/cc778305.aspx转载于:https://blog.51cto.com/281816327/1599269

java process exe.exec 执行exe程序

以前好奇怎么让java调用普通的exe程序&#xff0c;让exe程序协同java一起处理数据&#xff0c;一直也没时间看。只有这么两行零散的代码&#xff0c;惭愧&#xff0c;没有实践过。先堆这里。Process proexe.exec("D:\\myeclipse_work_space\\fileTest\\123.exe");} c…

灰色预测

灰色预测一、灰色预测理论简介&#xff08;1&#xff09;灰色系统&#xff08;2&#xff09;灰色系统的特点&#xff08;3&#xff09;灰色生成&#xff08;4&#xff09;GM&#xff08;1,1&#xff09;模型&#xff08;5&#xff09;GM&#xff08;1,1&#xff09;模型精度检验…

Redis 过期策略与源码分析

在 Redis 中我们可以给一些元素设置过期时间,那当它过期之后 Redis 是如何处理这些过期键呢? 过期键执行流程 Redis 之所以能知道那些键值过期,是因为在 Redis 中维护了一个字典,存储了所有设置了过期时间的键值,我们称之为过期字典。 过期键判断流程如下图所示: 过期…

Java类类getComponentType()方法与示例

类类getComponentType()方法 (Class class getComponentType() method) getComponentType() method is available in java.lang package. getComponentType()方法在java.lang包中可用。 getComponentType() method is used to returns the Class denoting the component type o…

SVN分支与合并

SVN分支与合并1 分支与合并的概念&#xff1a;分支&#xff1a;版本控制系统的一个特性是能够把各种修改分离出来放在开发品的一个分割线上。这条线被称为分支。分支经常被用来试验新的特性&#xff0c;而不会对开发有编译错误的干扰。当新的特性足够稳定之后&#xff0c;开发…

Oracle常用数据字典表

Oracle常用数据字典表 查看当前用户的缺省表空间SQL>select username,default_tablespace from user_users; 查看当前用户的角色SQL>select * from user_role_privs;查看当前用户的系统权限和表级权限SQL>select * from user_sys_privs;SQL>select * from user_tab…

Redis 键值过期操作

过期设置 Redis 中设置过期时间主要通过以下四种方式: expire key seconds:设置 key 在 n 秒后过期;pexpire key milliseconds:设置 key 在 n 毫秒后过期;expireat key timestamp:设置 key 在某个时间戳(精确到秒)之后过期;pexpireat key millisecondsTimestamp:设置…

图论模型迪杰斯特拉算法

一、步骤 二、MATLAB执行代码 tulun1.m weight [0 2 8 1 Inf Inf Inf Inf Inf Inf Inf;2 0 6 Inf 1 Inf Inf Inf Inf Inf Inf;8 6 0 7 5 1 2 Inf Inf Inf Inf;1 Inf 7 0 …

转:VMware安装Mac OS X Mavericks系统图文教程

Mac OS X一直是苹果电脑的御用操作系统&#xff0c;相当于我们常用的Windows操作系统而言&#xff0c;它能够给我们提供不一样的操作体验。令人欣喜的是&#xff0c;2013年10月23 日苹果宣布从Mac OS X Mavericks(即Mac OS X 10.9)起&#xff0c;之后的Mac系统全部免费升级。借…