Can we start a thread twice?
No, A thread can never be started again after starting once. It will throw IllegalThreadStateException. Example: ThreadExample.java /** * This program is used to show that we can not start * a thread which is already started. * @author w3schools */ class Test extends Thread{ public void run(){ System.out.println("thread started."); } } public class … Read more