Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Like in wait() method if lock is not granted on calling object(for wait()) like by sychronizing on on calling object ,it throws IllegalMonitorStateException.

I want to know that

Like wait() method, can we make sure lock is granted ,by writing some code?? or is it done by JVM only ??

share|improve this question

3 Answers

up vote 4 down vote accepted

Just write:

synchronized (thing) {
    thing.wait ();
}

If it's not already locked, it will be locked, and if it already locked, then it's fine.

share|improve this answer
this is the correct answer to so a bad question :) – bestsss Jan 27 '11 at 10:03

You can call Thread.holdsLock() to find out if a lock is held. However you should design your code so that you know whether you have a lock or not. You should be able to determine this staticly.

notify/wait was useful pre-Java 5. If you have Java 5 or later, using the concurrency library is likely to be a better choice.

EDIT: I was referring to the concurrent package http://download.oracle.com/javase/6/docs/api/java/util/concurrent/package-summary.html added in 2004, http://download.oracle.com/javase/tutorial/essential/concurrency/highlevel.html before then it was an external concurrency library. http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html

share|improve this answer
okay..is concurrncy library is Thread class or something else ? can you please elborate ? – ajduke Jan 27 '11 at 9:46

I don’t know Java, but the usual lock semantics is that when you try to acquire a lock, you block until you get it. This means that there is no need to verify that you actually got the lock – when the flow gets to the next line, you can be sure you are locked. When you start trying to do other things with the locks, like trying to check if it’s locked or not, you are usually doing it wrong.

share|improve this answer
just i want know that how we check ? – ajduke Jan 27 '11 at 9:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.