Relationship between HotSpot and JVM, JDK / OpenJDK?

2

What is Java HotSpot and what is its relationship to JVM and JDK / OpenJDK?

    
asked by anonymous 07.08.2017 / 15:56

1 answer

4

It is one of the JVM implementations, among the many existing . It is not the original implementation of the JVM, but soon became the official one. Created by Sun today owned by Oracle, but based on something already in place for another language in another company purchased by Sun. The great innovation of it was the inclusion of a JITter adaptive looking for the best native code according to the need of the code that is running. This is one of the strengths of Java allowing performance to often compensate for some weaknesses in the infrastructure that gives the default flexibility and security of the virtual machine.

    
07.08.2017 / 16:06