In which language are the Java compiler and JVM written?

后端 未结 9 1800
南旧
南旧 2020-11-28 00:28

In which languages are the Java compiler (javac), the virtual machine (JVM) and the java starter written?

9条回答
  •  天涯浪人
    2020-11-28 01:03

    Supposing you're talking about the Hotspot JVM, which is iirc provided by Sun, it is written in C++. For more info on the various virtual machines for Java, you can check this link. javac, like most Java compilers, is written in Java.

提交回复
热议问题