java退出代码有哪些 java退出代码有哪些方式( 二 )


this.add(createCenterPane());
this.setDefaultCloseOperation(this.DO_NOTHING_ON_CLOSE);
this.setSize(new Dimension(450, 335));
this.setLocationRelativeTo(null);
// this.setVisible(true);
this.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
int choose = JOptionPane.showConfirmDialog(null, "是否要退出登录界面?",
"系统提示:", JOptionPane.YES_NO_OPTION);
if (choose == JOptionPane.YES_OPTION) {
System.exit(1);
}
}
});
}其中this为JFrame对象 。BS结构的退出直接用windows.close()方法就行了!
JAVA退出函数的代码 , 替代return;boolean b =true;
while(b){
b=true是这里面一直执行,你不想执行了,就把在这里把b的值改为false;
}
java退出代码有哪些的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于java退出代码有哪些方式、java退出代码有哪些的信息别忘了在本站进行查找喔 。

推荐阅读