91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

為什么要加EventQueue.invokeLater呢

發布時間:2021-12-24 17:22:16 來源:億速云 閱讀:194 作者:柒染 欄目:編程語言

為什么要加EventQueue.invokeLater呢,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

比如下面的程序:

import java.awt.*;

import javax.swing.*;

public class Test 

{

    public static void main(String[] args)

    {

        EventQueue.invokeLater(new Runnable()

            {

                public void run()

                {

                    JFrame frame = new JFrame();

                    frame.setSize(400, 300);

                    frame.setVisible(true);

                    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

                }

            });

    }

}



原因:
Java's GUI is strictly single-threaded.
All GUI related things in java should always go through a single thread. The thread is our legendary "AWT-EventQueue-0"   . Hence all GUI related actions should necessarily go through the AWT Event thread. If not so you may end up in a deadlock. For small programs, this might never happen. But for a huge java application if you try frame.setVisible(true) kind of thing in main thread, you will soon find yourself searching a new job. What invokeLater() does is to post your Runnable in the AWT thread's event queue. So the code in your run method will be executed in the AWT-Eventqueue thread.
大意是說,java的GUI都是的單線程,應該使用事件調度線程去執行,如果沒意思使用事件調度線程的話,可能造成死鎖。但是在小的程序中,這種現象(死鎖)不會發生的;大的應用程序中才會出現這種現象!

關于為什么要加EventQueue.invokeLater呢問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乐昌市| 呼玛县| 长丰县| 张家川| 安顺市| 伊金霍洛旗| 二连浩特市| 望都县| 黎城县| 哈密市| 渑池县| 义乌市| 大足县| 嘉定区| 通江县| 永清县| 吉安县| 大荔县| 南郑县| 乐至县| 保山市| 山丹县| 漾濞| 剑川县| 金塔县| 新竹县| 山东| 榆中县| 清徐县| 迁西县| 锦屏县| 高密市| 修水县| 饶阳县| 武鸣县| 藁城市| 水富县| 大洼县| 镇雄县| 牙克石市| 周至县|