Get the App
SLTechnology News&Howtos  ›  Internet Technology  › 

How does the java thread end

Shulou Source: shulou.com Published: 2022-05-31 10:53:26 09月23日 Update

This article mainly introduces the relevant knowledge of how to end the java thread, the content is detailed and easy to understand, the operation is simple and fast, and it has a certain reference value. I believe you will gain something after reading this Java thread ending article. Let's take a look.

1. The run () method that finishes running the thread.

2. The thread throws uncaptured Exception or Error.

3. Another thread calls the thread's stop () method (which has been discarded). They still exist, but you should not use them in new code and try to eliminate them from existing code.

Example

The public class ServerThread extends Thread {/ / volatile modifier is used to ensure that the latest value of this variable is always read by other threads public volatile boolean exit = false; @ Override public void run () {ServerSocket serverSocket = new ServerSocket (8080); while (! exit) {serverSocket.accept () / / blocking waiting for client messages...} public static void main (String [] args) {ServerThread t = new ServerThread (); t.start ();... T.exit = true; / / modify flag bit, exit thread}} this is the end of the article on "how Java threads end". Thank you for reading! I believe you all have a certain understanding of the knowledge of "how does Java thread end". If you want to learn more, you are welcome to follow the industry information channel.

Tags: Threads methods knowledge code content articles values variables instances customers clients easy to operate articles easy to understand more flags messages see industry information Apple Docker Huawei Linux macOS MariaDB Microsoft MySQL NVidia OPPO Reno Shulou Tech Info Shulou Information Redmi MySQL OPPO Reno