Simple Question
Hi all,
Please excuse me for such simple questions:
I was studying and reading and I noticed many swing applications launch the program by the following code:
publicstaticvoid main(String[] args){
javax.swing.SwingUtilities.invokeLater(new Runnable(){
publicvoid run(){
GUI gui =new GUI();
}
});
Apart from theGUI gui = new GUI(); andpublic static void main (String[] args) What does the code do?
Thanks :)

