The Java memory model specifies how the Java virtual machine works with the computer's memory (RAM). The Java virtual machine is a model of a whole computer so this model naturally includes a memory model - AKA the Java memory model. It is very important to understand the Java memory model if you want to design correctly behaving concurrent programs. The Java memory model specifies how and when di

