I tried really hard to search for information about the issue, but nothing was relevant. Any contribution will be appreciated.
DataStructure ds = new DataStructure();
public synchronized void run() { b(); }
private void b() { ds.update(); }
public synchronized void c() { ds.update(); }
Suppose that the above code is implemented using a thread. as you might notice, there is a DataStructure object which is being shared and accessed through synchronized methods, when only one synchronized method can be called at any given time (I am not mistaken. right?). Is there any possibility that the DataStructure object will be accessed through the public methods in unsynchronized manner?
thanks.
c()fromrun()? – ninjalj May 7 '11 at 11:45b()is a small fraction of whatrun()should do, that is the reason why the design looks like that. – JavaNewbie May 7 '11 at 13:28b()!=c()? Also, why don't yousynchronize (ds), since it's actuallydswhat you are trying to protect? – ninjalj May 7 '11 at 13:33