Lille thread spørgsmål
Jeg læste følgende inde på Suns hjemmeside:"This works well when only one thread at a time executes a given run() method, but it fails when multiple threads share the same run() method (in other words, share the same Runnable object) and you want only some of the threads to stop. For example, it's common to want all but the most recent thread to stop executing. Instead of using a boolean variable, store a reference to the most recently created thread, and in the run() method check to see whether it matches the current thread instance:"
Link: http://developers.sun.com/techtopics/mobility/midp/articles/threading2/
Jeg forstår faktisk ikke helt hvad der menes, hvis jeg nu har en klasse der implementere Runnable, og jeg så opretter et par objekter af den klasse med en tråd kørende i hver. Kan jeg så risikere at lukke alle trådene ned hvis jeg stopper den ene? Jeg koder til J2ME, så jeg stopper mine tråde med en boolesk variabel.
MVH Morten