aspose file tools
The moose likes Java in General and the fly likes jvm Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "jvm" Watch "jvm" New topic
Author

jvm

c shah
Greenhorn

Joined: May 12, 2011
Posts: 10
what is an instance of jvm?
Jesper de Jong
Java Cowboy
Bartender

Joined: Aug 16, 2005
Posts: 12929
    
    3

The JVM is the Java Virtual Machine.

When you start a Java program, you start up a new JVM. When you start up a second Java program while the other one is still running, you will have two JVMs running. The word "instance" is just an English word that refers to the actual copies of the JVM that are running. So, when you start up two Java programs, you'll have two instances of the JVM running.

This word is also used to indicate the relationship between classes and objects. An object is an instance of a class. In other words, a class is the plan that tells what objects of that class should look like, and you can make concrete instances of the class (objects).


Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: jvm
 
Similar Threads
main() doubts
jvm scope
WA #2 ..... word association
size for data type boolean
Query on JVM