In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)05/31 Report--
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.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.