如何在布尔值为真时关闭 JFrame?

huangapple go评论70阅读模式
英文:

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();

huangapple
  • 本文由 发表于 2020年8月5日 02:03:57
  • 转载请务必保留本文链接:https://go.coder-hub.com/63252691.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定