For example if i have a java command line program that spawns a new thread (thread #2) to do some polling, and then sleep for 5 minutes. while the main thread (thread #1) of the program is running and then finishes before the 5 minutes from thread #2 is up, so the program will exit. Is there any problem with this? Should I interrupt Thread #2 in Thread #1 before the end of the main function in this program?
|
|
It may be considered bad practice and a sign of poor design by some, but in principal there shouldn't be any problem to terminate the JVM with Another issue though, is whether or not Thread #2 may be in the middle of some action. |
|||
|
It depends entirely on what it's doing. When the program exits, the process will terminate, taking any additional threads with it. The only potential problem would be if Thread #2 holds some resource handle. However, if all it's doing is reading, then you shouldn't have a problem. |
|||
|
|
|
Non-deamon threads keep on running in the background after main has finished execution. |
||||
|
|
Have a look at here. For the termination of a java program, it is necessary for all non-daemon threads to terminate first. In you case, there should not be any problem, unless and until your |
|||
|
|