Home > Java > javaTutorial > How to use java's park method

How to use java's park method

WBOY
Release: 2023-05-04 22:07:05
forward
1630 people have browsed it

Description

1. It belongs to the LockSupport class. LockSupport is a thread blocking tool class.

2. All methods are static. You can use park to block the thread, or use unpart to wake up the thread.

Example

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

The above is the detailed content of How to use java's park method. 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