Life Cycle of Thread in Java Programming In java, thread is a class. We know that class consists of a number of methods, variables, constructors etc. Here also the thread class consists of a number of methods. In order to access those methods first create an object for thread class. Thread life cycle has five states. From the creation up to the terminating the thread will move in five different states; these are called thread life cycles . Whenever a thread is created it is moved to a new state.In other words, the state where a thread is created and it is not running is called the newborn state . Whenever a thread is ready to execute the task it moves to runnable state, but is not executed currently.when the start() method is called on the new born thread, it will be in runnable state . After the runnable state, if the thread gets CPU access, it moves into the running state . If the CPU, completes without interrupting the process, it will move to a stop state. If any I/O inter...
بسم الله الرحمن الرحيم
This free site provides basic Java theory notes and simple programs for beginners. It is the best way to learn Java programming for free. best way to learn Java programming for free, best Java notes for beginners, and simple Java programs for practice for beginners.