I have a single frame created using Netbeans GUI builder when I view the frame properties one of the first options is default close operation the options listed are: DISPOSE_ON_CLOSE
, HIDE_ON_CLOSE
, DO_NOTHING_ON_CLOSE
& EXIT_ON_CLOSE
I understand the middle two but, whats the difference between DISPOSE_ON_CLOSE
and EXIT_ON_CLOSE
? I have tried testing both but to me they do the same thing to me
EXIT_ON_CLOSE
will terminate the program.
DISPOSE_ON_CLOSE
will call dispose()
on the frame, which will make it disappear and remove the resources it is using. You cannot bring it back, unlike hiding it.
See aslo JFrame.dispose() vs System.exit()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With