I'm facing a strange problem which has made me wonder what exactly happens in a synchronized method. Let's say there is a method

synchronized public void example(){
     //...code
     int i=call(); //calling another method
     //...do something with i 
}

Now while the call() method is being executed, can another object enter this synchronized example() method? So when the call() returns, there might be some ConcurrentModificationException? What to do in order to avoid problems?

link|improve this question

73% accept rate
feedback

3 Answers

No it can't. A synchronized method is basically the same as:

public void example(){
  synchronized(this){
    //do stuff
  }
}
link|improve this answer
so even if i leave the synchronized method and then return back, it will be like one whole big synchronized method? Calls to external methods won't cause any problems? – aps Aug 5 '11 at 19:55
The reason I'm trying to be so sure is that, then the problem in my program is probably because of some other thing, which I have to find out.thanks. – aps Aug 5 '11 at 19:56
1  
No, they don't cause any problem. If they would, what could you do in a synchronized block? Any meaningful task involves calling some method. – JB Nizet Aug 5 '11 at 19:58
1  
@aps Even though the method is synchronized, what's really happening is that the monitor on the invoking object is being entered when the method starts, and then exited when the method returns. Whatever happens between those two points doesn't affect the status of the monitor, and so even external methods won't compromise that. – dlev Aug 5 '11 at 20:01
feedback

Note that in this example, if call() isn't private or is called from somewhere else in the class, someone else can interrupt what you think is an entirely synchronous process.

synchronized void a(){
    println 'hello'
    b();
    println 'world'
}

void b(){

}

If you expect "everything that a does to be guarded by synchronized", then if b has any side-effects at all, that guarantee is lost if methods other than synchronized void a call b.

link|improve this answer
I get your point.so what should I do in that case? make b synchronized so that no interrupts occur? – aps Aug 5 '11 at 20:06
If b is only ever called from a, you're okay. To be safe, any entry point (public, protected, default) method into a class can be synchronized. That way, you are in-fact guaranteeing that only single thread can use the object at a time. Also make sure you don't directly manipulate public, protected, or default variables, as you can get hosed in the exact same way as the method setup. – Stefan Kendall Aug 6 '11 at 0:53
For a very elaborate and teeth-grinding treatment of the topic, check out the SCJP 6 study book. amazon.com/SCJP-Certified-Programmer-Java-310-065/dp/0071591060 – Stefan Kendall Aug 6 '11 at 0:54
-1, "println 'hello'" is not valid java – Will Den Aug 18 '11 at 17:43
@Greg: I see that you're trolling my answers with downvotes, and the automated stackexchange auditter will also. – Stefan Kendall Aug 18 '11 at 20:09
show 2 more comments
feedback

When a thread enters a Synchronized method a lock occurs, the lock doesn't release until that method returns, which would be after your call to call().

Here is a good article on locks and synchronization: http://download.oracle.com/javase/tutorial/essential/concurrency/locksync.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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