Hi
can you please let me know in which language the Java compiler, virtual machine (JVM) and java is written.
|
1
|
|
||||||||||||||||||||
|
|
|
The precise phrasing of the question is slightly misleading: it is not "the JVM" or "the compiler" as there are multiple JVM vendors (jrockit is one, IBM another) and multiple compilers out there.
|
|||
|
|
|
From Java Docs The compiler is written in Java and the runtime is written in ANSI C |
||||||||
|
|
|
This link should answer your question It seems the compiler is now written in Java, but the runtime is written in ANSI C |
||
|
|
|
|
Should you wish to, you can download the sources for the OpenJDK from jdk.dev.java.net. |
||
|
|
|
|
Jikes RVM, a self-hosting JVM used extensively for research purposes is written in Java. It's not the one people run on their desktops, but it's way up there on my list of "now let's show off the general power of the language." |
||
|
|
|
|
In principle almost anything, usually C |
||
|
|
|
|
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. |
||
|
|
