你选择的答案有点尴尬。使用 Thread.sleep(1000) 将每秒检查一次窗口状态。这不是性能问题,而只是糟糕的编码风格。您可能有一秒钟的响应时间。
这个代码稍微好一点。
private static Object lock = new Object();
private static JFrame frame = new JFrame();
/**
* @param args
*/
public static void main(String[] args) {
frame.setSize(300, 300);
frame.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
frame.setVisible(true);
Thread t = new Thread() {
public void run() {
synchronized(lock) {
while (frame.isVisible())
try {
lock.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("Working now");
}
}
};
t.start();
frame.addWindowListener(new WindowAdapter() {
@Override
public void windowClosing(WindowEvent arg0) {
synchronized (lock) {
frame.setVisible(false);
lock.notify();
}
}
});
t.join();
}