java - How does unhandled exceptions affect JVM? -
my project got 20 unhandled exceptions, doesn't matter why, , wondering how affect jvm? doesn't crash, i'm still wondering footprint in jvm. go?
all exception handled either code or "uncaught exception handler" way avoid handling exception return block or exiting program.
an unhandled exception/error result in end of running thread. acceptable response, there no reason needs upset application.
one problem exceptions have overhead , if create excessive numbers of them can hurt performance.
Comments
Post a Comment