I have a method that many threads access in parallel which uses a class with two synchronized methods that I have no control over. getObject and createNewObject. I want to be sure that I do not create several objects (MyObject).
MyObject obj;
public void method1() {
obj = getObject("key");
if (obj == null)
obj = createNewObject("key");
}
this, I think, would not work as the thread could be suspended between the getting and creating methods so another thread could come in and create an object as well. The synchronized createNewObject method fixes this by checking if an object already exists named "key" and throwing an exception in that case.
Which of the following methods would be preffered? Performance, safety and design wise. I've heard that the double locking type (method 3) doesn't work? Maybe I should just use the method1?
Most of the times, the object will be found so there's no problem. It might be better performance to skip synchronization and handle the exception in those rare cases?
MyObject obj;
public synchronized void method1() {
obj = getObject("key");
if (obj == null)
obj = createNewObject("key");
}
public void method2() {
obj = getObject("key");
if (obj == null)
try {
obj = createNewObject("key");
} catch (Exception e) { // ops, someone already created object "key"
obj = getObject();
}
}
public void method3() {
obj = getObject("key");
if (obj == null)
obj = getObj("key");
}
public synchronized MyObject getObj(String key) {
MyObject obj = getObject(key);
if (obj == null)
obj = createNewObject(key);
return obj;
}