How can two threads access a synchronized block simultaneously? That is, how can I make one thread give the chance for the other thread to execute a synchronized block, even before this thread finishes the execution of the same synchronized block?
|
|
See wait(), notify(), and notifyAll(). Edit: The edit to your question is incorrect. The sleep() method does not release the monitor. For example:
|
|||||||||
|
|
It sounds like you might want to consider using more than one synchronized block, particularly if there's a blocking operation that one thread is getting caught on and thus blocking another thread that wants to execute something else in the block. |
|||
|
|
|
A synchronized block is a block of code which can (by definition) only be accessed by one thread at a time. Saying that you want another thread to enter this block while another thread also currently processes it, does make the synchronized block scheme useless. You probably want to split the synchronized block into many other ones. |
|||
|
|
The only way I can see if one thread calls |
|||
|
|
|
A thread can release its monitor using Example:
This prints:
However it's not a "hack" to allow a mutually exclusive block to be run non-atomically. If you're going to use very low-level synchronization primitives like this you need to know what you're doing. |
||||
|
|