Programming Tutorials

Comment on Tutorial - The Main Thread in Java By Charles



Comment Added by : Abinash

Comment Added at : 2013-07-16 06:37:11

Comment on Tutorial : The Main Thread in Java By Charles
It must be the last thread to finish execution. When the main thread stops, your program terminates." That is not true. The JVM keeps running until all non-daemon threads are done

View Tutorial