e566. 关闭的时候关闭程序
Posted borter
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了e566. 关闭的时候关闭程序相关的知识,希望对你有一定的参考价值。
By default, when the close button on a frame is clicked, nothing happens. This example shows how to exit the application when the frame is closed:
// Create a frame
Frame frame = new Frame();
// Add a listener for the close event
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent evt) {
// Exit the application
System.exit(0);
}
});
Related Examples |
以上是关于e566. 关闭的时候关闭程序的主要内容,如果未能解决你的问题,请参考以下文章
Android App 在片段中创建 ListView 引用时关闭