I imagine that no, they aren’t, because every process has its own memory space, of course.
But how does the whole JVM thing actually work? Is there a separate JVM in a separate process for every Java program that I launch? Do Java programs running in a system share anything at all? Are there differences between OSs and JVM implementations? Can I make programs share variables (i. e. directly through the JVM rather than the usual IPC mechanisms)? Are there more exotic one-process JVMs for special purposes?
Generally, what are recommendable reads about the guts of JVMs? The spec? The source code of some implementation? Websites? Books?
A class is defined by its full name and the class loader that loaded it. If the same class is within the same JVM process and the two programs loaded the class through the same class loader then the static members are shared. Classloading rules are of extreme importance.
If you are using two separate JVMs to launch two apps, you are correct. But take the case of application/servlet containers such as tomcat: they load several apps through the same process (the tomcat host process).
Every time you type
>java -cp...at the command line, you are creating a new process. Bear in mind that when you run eclipse or call an ant java task withfork=trueyou are also creating new processes.Like a poster said, there are projects like Terracota that facilitate this for you. A general approach for this kind of sharing is a distributed cache.