What is the advantage of using ExecutorService over running threads passing a Runnable into the Thread constructor?
|
|
|||||||||||||
|
|
From JCiP, Section 6.2, straight from the horse's mouth:
Rather than spending your time implementing (often incorrectly, and with great effort) the underlying infrastructure for parallelism, the Also, despite the boilerplate look and feel, the Oracle API page summarizing the concurrency utilities includes some really solid arguments for using them, not least:
This question on SO asks about a good book, to which the immediate answer is JCiP. If you haven't already, get yourself a copy. The comprehensive approach to concurrency presented there goes well beyond this question, and will save you a lot of heartache in the long run. |
||||
|
|
|
An advantage I see is in managing/scheduling several threads. With ExecutorService, you don't have to write your own thread manager which can be plagued with bugs. This is especially useful if your program needs to run several threads at once. For example you want to execute two threads at a time, you can easily do it like this:
The example may be trivial, but try to think that the "hello world" line consists of a heavy operation and you want that operation to run in several threads at a time in order to improve your program's performance. This is just one example, there are still many cases that you want to schedule or run several threads and use ExecutorService as your thread manager. For running a single thread, I don't see any clear advantage of using ExecutorService. |
|||||||||||
|