In this article we will learn to implement a Java program to demonstrate life cycle of a thread. A Java program is provided below to illustrate life cycle of a thread. Program is as follows: import java.util.*; class ChildThread implements Runnable { Thread t; ChildThread() { t = new Thread(this); System.out.println("Thread is in new […]