Simple code from java.sun:

public class BasicApp implements Runnable {

    JFrame mainFrame;
    JLabel label;

    public void run() {
        mainFrame = new JFrame("BasicApp");
        label = new JLabel("Hello, world!");
        label.setFont(new Font("SansSerif", Font.PLAIN, 22));
        mainFrame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
        mainFrame.addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent e) {
                mainFrame.setVisible(false);
                // Perform any other operations you might need
                // before exit.
                System.exit(0);
            }
        });
        mainFrame.add(label);
        mainFrame.pack();
        mainFrame.setVisible(true);
    }

    public static void main(String[] args) {
        Runnable app = new BasicApp();
        try {
            SwingUtilities.invokeAndWait(app);
        } catch (InvocationTargetException ex) {
            ex.printStackTrace();
        } catch (InterruptedException ex) {
            ex.printStackTrace();
        }
    }
}

I can put all of this method into main(), but why do I need a separate run method that also implements the runnable to execute it? What is the idea behind this concept? Thanks.

link|improve this question

75% accept rate
1  
you can also put the code in a single line – Johan Sjöberg Nov 10 '11 at 13:34
Runnable is about concurrency, isn't it? – Kerrek SB Nov 10 '11 at 13:35
@KerrekSB In this case, yes it is about running "Swing stuff" on the EDT. – Bringer128 Nov 11 '11 at 8:19
feedback

3 Answers

up vote 8 down vote accepted

From Oracle SDN: Threads and Swing

Once a Swing component has been realized, all code that might affect or depend on the state of that component should be executed in the event-dispatching thread.

The gist of it is that the code needs to be run when Swing is good and ready to run it. Not necessarily right when you call it.

link|improve this answer
feedback

Method run() is started in separated Threads. So your GUI part work "standalone" from other application and don't stop it during drawing.

link|improve this answer
feedback

If you intend to run your code in threads, then you'd need to implement the runnable interface. When you implement the runnable interface, you need to implement the run() method.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.