Is the Java virtual machine included in all Java software?

I am new to java. I know that the Java virtual machine is an abstract machine that helps run Java programs. So I would like to know if the JVM is included in all Java software like Eclipse?

+4
source share
2 answers

Usually not. Java is used by many programs, including with each piece of Java software, much more hard disk space will be used than necessary, and a whole new instance of JVM must be loaded for each of them. In addition, each piece of software must be updated whenever a security flaw is discovered. Therefore, it is often installed only once, often shortly after installing a new computer or installing the OS.

Sometimes a software package may be developed without assuming Java on the system; therefore, it may include its own. Sometimes he may also need an individual JVM.

, , - , Java , . , ( , ), .

, .

+5

, ,

JVM . , , .

Concrete-, , - , , runtime - Java.

JVM (, , ) , .

, JVM - . Java , , . Java.

+3

All Articles