Does every execution of java command start a separate JVM?
+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
2010-05-17 20:49:01