[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[jfriends-ml 12443] Re: いつ Swing のイベント・ディスパッ チ・スレッドが開始されるか



高橋(徹)です。

SunのSwingチュートリアル記事におけるmainメソッドの記述は
次のようになっています。
たとえmainメソッドからであっても、異なるスレッドからアクセスさせない
ということのようです。
http://java.sun.com/docs/books/tutorial/uiswing/learn/example1.html

〜〜コードの一部を抜粋〜〜
public static void main(String[] args) {
    javax.swing.SwingUtilities.invokeLater(new Runnbale() {
        public void run() {
            createAndShowGUI();
        }
    });
}

private static void createAndShowGUI() {
    JFrame frame = new JFrame("...");
    ...
    frame.pack();
    frame.setVisible(true);
}

--
TAKAHASHI,Toru
torutk@xxxxxxxxxxxx