List of article on Thread

Life Cycle of a Thread In JAVA

In Multithreading, Thread can be in one of the five states which forms life cycle of the Thread. This life cycle of a thread is controlled by java virtual machine (JVM). Following are the five stages by which Thread goes through in its lifecycle as shown in figure 1.1 : New Runnable Running Non-Runnable (Blocked) … Continue reading Life Cycle of a Thread In JAVA

Creating a Thread in Java with Example

Threads as we have discussed are light- weight smallest part of process that can perform tasks simultaneously with other threads of the same process. In this article we will discuss how to create thread with examples in Java. There are two ways by which thread can be created in Java: By extending Thread class By … Continue reading Creating a Thread in Java with Example