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 引用时关闭

我该如何做模态对话框片段(代码在我关闭之前不会执行)

如何从同一片段中的关闭按钮关闭片段?

在 zxing 片段库中打开/关闭手电筒

Android:如何在选项卡内从一个片段导航到另一个片段? [关闭]

C# 最有用的(自定义)代码片段是啥? [关闭]