tags:

views:

120

answers:

2

Does every execution of java command start a separate JVM?

+4  A: 

Yes, it does start a separate JVM.

Andrius
+1  A: 

Yes, you get a separate VM.

Some class resources can be shared (class data sharing). This is by default enabled, e.g. it's automatically used when possible.

volley