Hi All
What I am confusing with "Different JVM" and "different instance".
Please give me the explanation for my questions.
Thanks Advanced.
Let say, I have a
java file "HelloWorld.java"
CASE 01
I have two JDK folders
C:\Program Files (x86)\Java\jdk1.6\bin
C:\Program Files (x86)\Java\jdk1.6_copy\bin
Running two HelloWorld class file in the same time.
C:\Program Files (x86)\Java\jdk1.6\bin\
java HelloWorld
C:\Program Files (x86)\Java\jdk1.6_copy\bin\
java HelloWorld
CASE 02
created a copy of java.exe in below folder
C:\Program Files (x86)\Java\jdk1.6\bin\java.exe
C:\Program Files (x86)\Java\jdk1.6\bin\java_copy.exe
And running like
C:\Program Files (x86)\Java\jdk1.6\bin\
java HelloWorld
C:\Program Files (x86)\Java\jdk1.6\bin\
java_copy HelloWorld
1.What is the difference between Case 1 ans 2 ?
2.Are both are different JVM concept or not?
3.How about the memory utilization?