Introduction
This article explains what threads are in Java. It elaborates on their uses and on how to implement multi-threading in Java.
In a multitasking environment, having multiple threads helps the programmer to create efficient programs. In the context of Java, thread means two different things:
An instance of java.lang.Thread
A thread of execution
An instance of a thread is just an object like any other object in Java. It has variables and methods, and lives and dies on the heap, but a thread of execution is an individual process (a lightweight process) that has its own stack. In Java, there is one thread per stack or vice versa. Even if you don’t create any thread in your program, there is a thread running in your program, by default, which is called the Main thread. The main() function of Java or the starting point of a Java program runs in the Main thread, or we can say that the Main thread controls the execution of the main() function of a Java program.
Here is an article that appeared on Open Source For You (OSFY) February 2015 edition that does a deep dive into Multithreading in Java.
https://www.emertxe.com/technology-trends/multi-threading-in-java.pdf
Have a look into the article and let us know what you think.