vote up 6 vote down star

... the question says it all I believe!

flag

68% accept rate
When I'm the thread.start() method? :) – Bill the Lizard Nov 4 '08 at 18:31

9 Answers

vote up 11 vote down check

You might want to call run() in a particular unit test that is concerned strictly with functionality and not with concurrency.

link|flag
vote up 6 vote down

This has already been alluded to, but just to be clear: creating a new Thread object only to call it's run() method is needlessly expensive and should be a major red flag. It would be a much better, more decoupled design to create a Runnable impl and either (a) call it's run() method directly if that's the desired behavior, or (b) construct a new Thread with that Runnable and start the Thread.

Better yet, for even more decoupling, check out the Executor interface and framework in JDK 5 and newer. This allows you, in a nutshell, to decouple task execution (the Runnable instance) from how it is executed (the Executor implementation, which might execute the Runnable in the current Thread, in a new Thread, using an existing Thread from a pool, and whatnot).

link|flag
vote up 0 vote down

At least in the JVM 1.6., there's a bit of checking and run is called natively:

 public synchronized void start() {
        /**
     * This method is not invoked for the main method thread or "system"
     * group threads created/set up by the VM. Any new functionality added 
     * to this method in the future may have to also be added to the VM.
     *
     * A zero status value corresponds to state "NEW".
         */
        if (threadStatus != 0)
            throw new IllegalThreadStateException();
        group.add(this);
        start0();
        if (stopBeforeStart) {
        stop0(throwableFromStop);
    }
    }

    private native void start0();
link|flag
vote up 2 vote down

Assuming that you know the start and run method usage i.e. synchronous vs. asynchronous; run method can be used just to test the functionality.

Plus in some circumstances, the same thread class can be used in two different places with synch and asynch functionality requirements by having two different objects with one's run method and other's start method being invoked.

link|flag
vote up 2 vote down

If you want to execute the contents of run() like you would of any other method. Not to start a thread, of course.

link|flag
vote up 5 vote down

Taken form the Code Style Java threads FAQ:

Q: What's the difference between a thread's start() and run() methods?

A: The separate start() and run() methods in the Thread class provide two ways to create threaded programs. The start() method starts the execution of the new thread and calls the run() method. The start() method returns immediately and the new thread normally continues until the run() method returns.

The Thread class' run() method does nothing, so sub-classes should override the method with code to execute in the second thread. If a Thread is instantiated with a Runnable argument, the thread's run() method executes the run() method of the Runnable object in the new thread instead.

Depending on the nature of your threaded program, calling the Thread run() method directly can give the same output as calling via the start() method, but in the latter case the code is actually executed in a new thread.

link|flag
vote up 3 vote down

When you want it to run synchronously. Calling the run method won't actually give you multi-threading. The start method creates a new thread which calls the run method.

link|flag
vote up 13 vote down

Never. Calling run() directly just executes the code synchronously (in the same thread), just like a normal method call.

link|flag
"Never" is a bit too absolute. Maybe don't always want a new thread, and still execute the code? – Tomalak Nov 4 '08 at 18:51
Maybe, but in that case it would be needlessly wasteful to create a new Thread only to call run() method. Better to create a Runnable impl and either run that in-thread or construct and start a new Thread with it. – Scott Bale Nov 4 '08 at 19:20
Absolutes usually are too strong, but then again, rules are made to be broken. I think keeping it clear and simple is best, especially for beginner programmers. Besides, this case is one that's pretty cut-and-dry. Scott Bale nailed it when he suggested using Runnable. – Adam Crume Nov 4 '08 at 20:49
vote up 4 vote down

Call thread.start(), it will in turn call thread.run(). Can't think of a case when you would want to bypass thread.start() and go directly to thread.run()

link|flag
During testing is the only legitimate case I can think of. Otherwise, the contents of run() should be in a separate method that gets called by run, or by other means. – Bill the Lizard Nov 4 '08 at 18:33

Your Answer

Get an OpenID
or

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