vote up 12 vote down star
4

From what time I've spent with threads in Java, I've found these two ways to write threads.

public class ThreadA implements Runnable {
    public void run() {
    	//Code
    }
}
//with a "new Thread(threadA).start()" call


public class ThreadB extends Thread {
    public ThreadB() {
    	super("ThreadB");
    }
    public void run() {
    	//Code
    }
}
//with a "threadB.start()" call

Is there any significant difference in these two blocks of code?

flag
You should edit your post and use "code template" for the java code. – Jérôme Feb 12 at 14:32
I suggest not calling your Runnable "ThreadA". It is not a thread - it is a piece of code that can be executed by thread. – DJClayworth Feb 12 at 15:06
Thanks for this question, the answers cleared up a lot of misconceptions I had. I looked into the correct way to do Java threads before SO existed and there was a lot of misinformation/outdated information out there. – James McMahon May 8 at 20:56

6 Answers

vote up 26 vote down check

Yes: implements Runnable is the preferred way to do it, IMO. You're not really specialising the thread's behaviour, you're just giving it something to run. That means composition is the philosophically "purer" way to go.

In practical terms, it means you can implement Runnable and derive from anything else as well.

link|flag
3  
+1. Of course, Jon Skeet doesn't have to mark a thread Runnable. He stares at it, narrows his eyes, and the thread runs for its life. – rtperson Feb 12 at 14:38
Exactly, well put. What behavior are we trying to overwrite in Thread by extending it? I would argue most people are not trying to overwrite any behavior, but trying to use behavior of Thread. – hooknc Feb 12 at 16:50
vote up 1 vote down

One thing that I'm surprised hasn't been mentioned yet is that implementing Runnable makes your class more flexible.

If you extend thread then the action you're doing is always going to be in a thread. However, if you extend Runnable it doesn't have to be. You can run it in a thread, or pass it to some kind of executor service, or just pass it around as a task within a single threaded application (maybe to be run at a later time, but within the same thread). The options are a lot more open if you just use Runnable than if you bind yourself to Thread.

link|flag
vote up 9 vote down

You should implement Runnable, but if you are running on Java 5 or higher, you should not start it with new Thread but use an ExecutorService instead. For details see: How to implement simple threading in Java.

link|flag
I wouldn't think ExecutorService would be that useful if you just want to launch a single thread. – R. Bemrose Feb 12 at 14:54
From what I have learned one should no longer start a thread on your own in general, because leaving that to the executor service makes all much more controllable (like, waiting for the thread to suspend). Also, I don't see anything in the question that implies it's about a single thread. – Fabian Steeg Feb 12 at 15:16
vote up 19 vote down

The caveat is important

In general, I would recommend using something like Runnable rather than Thread because it allows you to keep your work only loosely coupled with your choice of concurrency. For example, if you use a Runnable and decide later on that this doesn't in fact require it's own Thread, you can just call threadA.run().

Caveat: Around here, I strongly discourage the use of raw Threads. I much prefer the use of Callables and FutureTasks (From the javadoc: "A cancellable asynchronous computation"). The integration of timeouts, proper cancelling and the thread pooling of the modern concurrency support are all much more useful to me than piles of raw Threads.

Follow-up: there is a FutureTask constructor that allows you to use Runnables (if that's what you are most comfortable with) and still get the benefit of the modern concurrency tools. As the javadoc suggests that, if you don't need the returned result, you should consider using this constructor (using "threadA" as you did in the question instead of the "runnable" that they used in the documentation):

new FutureTask<Object>(threadA, null)
link|flag
vote up 3 vote down

Instantiating an interface gives a cleaner separation between your code and the implementation of threads, so I'd prefer to implement Runnable in this case.

link|flag
vote up 2 vote down

I'm not an expert, but I can think of one reason to implement Runnable instead of extend Thread: Java only supports single inheritance, so you can only extend one class.

Edit: This originally said "Implementing an interface requires less resources." as well, but you need to create a new Thread instance either way, so this was wrong.

link|flag

Your Answer

Get an OpenID
or

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