return Wert von showConfirmDialog in extra Variable ?
-
Hallo,
macht es einen Unterschied ob ichif(JOptionPane.showConfirmDialog(null,"Sind sie sicher?","Programm beenden?",JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE)==JOptionPane.YES_OPTION) System.exit(0);
oder
int close = JOptionPane.showConfirmDialog(null,"Sind sie sicher?","Programm beenden?",JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE); if(close==JOptionPane.YES_OPTION) System.exit(0);
schreibe? Weitere Fragen, die ich dazu hätte wären
1. Was wird bevorzugt genommen?
2. und gibt es Performanceunterschiede?
Vielen Dank und liebe Grüße
Benjamin