How to check if Java main thread is alive

To check if the main thread is running you cannot make use of the Thread.isAlive() method: you may get the error "Cannot make a static reference to the non-static method isAlive() from the type Thread", as main is a static method thus can only access static methods.

To check if the main method thread is alive you can get the instance of the main thread by Thread.currentThread() static method.

File: ThreadAlive.java
package com.code2care.examples.java;

public class ThreadAlive {

	public static void main(String[] args) {

		Thread t = Thread.currentThread();

		System.out.println("Thread : Main  Exited "
				+ Thread.currentThread().isAlive());
	}
}

This is not an AI-generated article but is demonstrated by a human.

Please support independent contributors like Code2care by donating a coffee.

Buy me a coffee!

Buy Code2care a Coffee!

Comments & Discussion

Facing issues? Have questions? Post them here! We're happy to help!