英文:
How to close JFrame once boolean is true?
问题
我希望我的JFrame
程序在布尔值**isDead
**为真时立即关闭。
我该如何做到这一点?
if (isDead) {
// 关闭程序
}
JFrame obj = new JFrame();
英文:
I want my JFrame
program to close as soon as a boolean isDead
is true.
How do I do this?
if (isDead) {
// Close the program
}
JFrame obj = new JFrame();
答案1
得分: 1
只需使用frame.setActive(false)
(这只会隐藏窗口,如果您想要关闭整个程序)
英文:
just use frame.setActive(false)
(this will just hide the frame and if you want to close the whole program)
答案2
得分: 0
setVisible(false);
dispose();
英文:
setVisible(false);
dispose();
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论