Let's say we have very simple Java class MyClass.
public class MyClass {
private int number;
public MyClass(int number) {
this.number = number;
}
public int getNumber() {
return number;
}
public void setNumber(int number) {
this.number = number;
}
}
There are three ways to construct thread-safe Java class which has some state:
Make it truly immutable
public class MyClass { private final int number; public MyClass(int number) { this.number = number; } public int getNumber() { return number; } }Make field
numbervolatile.public class MyClass { private volatile int number; public MyClass(int number) { this.number = number; } public int getNumber() { return number; } public void setNumber(int number) { this.number = number; } }Use a
synchronizedblock. Classic version of this approach described in Chapter 4.3.5 of Java Concurrency in practice. And the funny thing about that it has an error in the example which is mentioned in a errata for this book.public class MyClass { private int number; public MyClass(int number) { setNumber(number); } public synchronized int getNumber() { return number; } public synchronized void setNumber(int number) { this.number = number; } }
There is one more fact that should be added to the context of discussion. In a multhithreaded environment JVM is free to reorder instructions outside of synchronized block preserving a logical sequence and happens-before relationships specified by JVM. It may cause publishing object which is not properly constructed yet to another thread.
I've got a couple of questions regarding the third case.
Will it be equivalent to a following piece of code:
public class MyClass { private int number; public MyClass(int number) { synchronized (this){ this.number = number; } } public synchronized int getNumber() { return number; } public synchronized void setNumber(int number) { this.number = number; } }Will a reordering be prevented in the third case or it possible for JVM to reorder intstructions and therefore publish object with default value in field
number?If an answer for the second question is yes than I have one more question.
public class MyClass { private int number; public MyClass(int number) { synchronized (new Object()){ this.number = number; } } public synchronized int getNumber() { return number; } public synchronized void setNumber(int number) { this.number = number; } }
This strange-looking synchronized (new Object()) is supposed to prevent reordering effect. Will it work?
Just to be clear, all these examples don't have any practical applications. I'm just curious about nuances of multithreading.