Home > Java > javaTutorial > body text

How to use java's join to block threads

WBOY
Release: 2023-04-26 12:28:07
forward
507 people have browsed it

1. Description

belongs to the Thread class. The join method blocks the thread that calls this method. When trip a calls b.join(long) of thread b, thread a blocks until thread b completes.

2. Example

public class Demo {
    public static void main(String[] args) throws Exception {
       System.out.println("main start");
        Thread t1 = new Thread(() -> {
            System.out.println("t1 start");
            System.out.println("t1 end");
        });
        t1.start();
        t1.join();
        System.out.println("main end");
    }
}
Copy after login

The above is the detailed content of How to use java's join to block threads. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template