aspose file tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes another help Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "another help" Watch "another help" New topic
Author

another help

wang jie
Greenhorn

Joined: May 01, 2002
Posts: 8
will the setPriority and exits synchronized code directly cause a thread to stop executing?
Corey McGlone
Ranch Hand

Joined: Dec 20, 2001
Posts: 3271
Unfortunately, I haven't been able to find any documentation to back this up, but I believe that neither case will cause a thread to stop executing.
Corey


SCJP Tipline, etc.
Reid M. Pinchback
Ranch Hand

Joined: Jan 25, 2002
Posts: 775
It makes no sense for exiting a synchronized region to force a thread to stop executing. All a synchronized region says is "at the moment I need exclusive access to the object". The thread still has work to do when it isn't in a sync region, so there is no reason to force it to stop executing.
There really aren't any solid guarantees made about what priority even means, so there is no reason why changing it would force a thread to stop executing.


Reid - SCJP2 (April 2002)
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: another help
 
Similar Threads
question
A Poll, a Poll, a very simple Poll!
Interesting classpath question
Static Initializers.
Puzzling question from Mughal and Rasmussen