#java thread
2 articles
Chronicle
2 posts2023
02- 01 Oct 17 How to Properly Stop a Java Thread How to Properly Stop a Java Thread
- 02 Oct 7 Ways to Create Threads in Java This article explores the ways to create threads in Java based on JDK 11. My answer is that there are only two ways: extending the Thread class and implementing the Runnable interface, as stated in the Oracle official documentation.