when does a thread go out of scope? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T06:17:00Zhttp://stackoverflow.com/feeds/question/289804http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/289804/when-does-a-thread-go-out-of-scope4when does a thread go out of scope?Ziggy2008-11-14T11:12:05Z2009-03-03T22:38:49Z
<p>I've written a program that counts lines, words, and characters in a text: it does this with threads. It works great sometimes, but not so great other times. What ends up happening is the variables pointing to the number of words and characters counted sometimes come up short and sometimes don't.</p>
<p>It seems to me that the threads are sometimes ending before they can count all the words or characters that they want to. Is it because these threads go out of scope when the while (true) loop breaks?</p>
<p>I've included the code from the thready part of my problem below:</p>
<pre><code>private void countText() {
try {
reader = new BufferedReader(new FileReader("this.txt"));
while (true) {
final String line = reader.readLine();
if(line == null) {break;}
lines++;
new Thread(new Runnable() {public void run() {chars += characterCounter(line);}}).start();
new Thread(new Runnable() {public void run() {words += wordCounter(line);}}).start();
println(line);
}
} catch(IOException ex) {return;}
}
</code></pre>
<p>(Sub Question: This is the first time I've asked about something and posted code. I don't want to use StackOverflow in place of google and wikipedia and am worried that this isn't an appropriate question? I tried to make the question more general so that I'm not just asking for help with my code... but, is there another website where this kind of question might be more appropriate?)</p>
http://stackoverflow.com/questions/289804/when-does-a-thread-go-out-of-scope/289818#2898182Answer by Chris Kimpton for when does a thread go out of scope?Chris Kimpton2008-11-14T11:17:29Z2008-11-14T11:17:29Z<p>Sounds like a good question to me... I think the problem might be related to the atomicity of the chars += and words += - several threads could be calling that at the same time - do you do anything to ensure that there is no interleaving.</p>
<p>That is:</p>
<p>Thread 1, has chars = 10, wants to add 5</p>
<p>Thread 2, has chars = 10, wants to add 3</p>
<p>Thread 1 works out new total, 15</p>
<p>Thread 2 works out new total, 13</p>
<p>Thread 1 sets chars to 15</p>
<p>Thread 2 sets chars to 13.</p>
<p>Might be possible unless you use synchronized when updating those vars.</p>
http://stackoverflow.com/questions/289804/when-does-a-thread-go-out-of-scope/289851#2898514Answer by WMR for when does a thread go out of scope?WMR2008-11-14T11:37:31Z2008-11-14T12:35:11Z<p>As Chris Kimpton already pointed out correctly you have a problem with the updating of <code>chars</code> and <code>words</code> in different threads. Synchronizing on <code>this</code> won't work either because <code>this</code> is a reference to the current thread which means different threads will synchronize on different objects. You could use an extra "lock object" you can synchronize on but the easiest way to fix this would probably be to use <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/atomic/AtomicInteger.html" rel="nofollow">AtomicIntegers</a> for the 2 counters:</p>
<pre><code>AtomicInteger chars = new AtomicInteger();
...
new Thread(new Runnable() {public void run() { chars.addAndGet(characterCounter(line));}}).start();
...
</code></pre>
<p>While this will probably fix your problem, <a href="http://stackoverflow.com/questions/289804/when-does-a-thread-go-out-of-scope#289869">Sam Stoke's more detailed answer</a> is completely right, the original design is very inefficient.</p>
<p>To answer your question about when a thread "goes out of scope": You are starting two new threads for every line in your file and all of them will run until they reach the end of their <code>run()</code> method. This is unless you make them <a href="http://java.sun.com/javase/6/docs/api/java/lang/Thread.html#setDaemon(boolean" rel="nofollow">daemon threads)</a>), in that case they'll exit as soon as daemon threads are the only ones still running in this JVM.</p>
http://stackoverflow.com/questions/289804/when-does-a-thread-go-out-of-scope/289869#2898696Answer by Sam Stokes for when does a thread go out of scope?Sam Stokes2008-11-14T11:49:03Z2008-11-14T11:49:03Z<p>A different threaded design would make it easier to find and fix this kind of problem, and be more efficient into the bargain. This is a longish response, but the summary is "if you're doing threads in Java, check out <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/package-summary.html" rel="nofollow">java.util.concurrent</a> as soon as humanly possible)".</p>
<p>I guess you're multithreading this code to learn threads rather than to speed up counting words, but that's a very inefficient way to use threads. You're creating two threads <em>per line</em> - two thousand threads for a thousand line file. Creating a thread (in modern JVMs) uses operating system resources and is generally fairly expensive. When two - let alone two thousand - threads have to access a shared resource (such as your <code>chars</code> and <code>words</code> counters), the resulting memory contention also hurts performance.</p>
<p>Making the counter variables <code>synchronized</code> as <a href="http://stackoverflow.com/questions/289804/when-does-a-thread-go-out-of-scope#289818">Chris Kimpton suggests</a> or <code>Atomic</code> as <a href="http://stackoverflow.com/questions/289804/when-does-a-thread-go-out-of-scope#289851">WMR suggests</a> will probably fix the code, but it will also make the effect of contention much worse. I'm pretty sure it will go slower than a single-threaded algorithm.</p>
<p>I suggest having just one long-lived thread which looks after <code>chars</code>, and one for <code>words</code>, each with a work queue to which you submit jobs each time you want to add a new number. This way only one thread is writing to each variable, and if you make changes to the design it'll be more obvious who's responsible for what. It'll also be faster because there's no memory contention and you're not creating hundreds of threads in a tight loop.</p>
<p>It's also important, once you've read all the lines in the file, to <em>wait</em> for all the threads to finish before you actually print out the values of the counters, otherwise you lose the updates from threads that haven't finished yet. With your current design you'd have to build up a big list of threads you created, and run through it at the end checking that they're all dead. With a queue-and-worker-thread design you can just tell each thread to drain its queue and then wait until it's done.</p>
<p>Java (from 1.5 and up) makes this kind of design very easy to implement: check out <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/Executors.html#newSingleThreadExecutor" rel="nofollow">java.util.concurrent.Executors.newSingleThreadExecutor</a>. It also makes it easy to add more concurrency later on (assuming proper locking etc), as you can just switch to a thread pool rather than a single thread.</p>