Java JFrame EventQueue
Posted
by asmo
on Stack Overflow
See other posts from Stack Overflow
or by asmo
Published on 2010-06-10T20:19:01Z
Indexed on
2010/06/10
20:23 UTC
Read the original article
Hit count: 450
In Java, to create and show a new JFrame, I simply do this:
public static void main(String[] args)
{
new JFrame().setVisible(true);
}
However, I saw many people doing it like this:
public static void main(String[] args)
{
EventQueue.invokeLater(new Runnable()
{
public void run()
{
new JFrame().setVisible(true);
}
});
}
Why? Are there any advantages?
© Stack Overflow or respective owner