vote up 8 vote down star
1

Hi can you please let me know in which language the Java compiler, virtual machine (JVM) and java is written.

flag

1  
Sorry if this sounds blunt, but why does it matter? javac can be programmatically accessed through the com.sun.tools.javac.Main class. Why is it important to know what language it is implemented in? I guess I'm just curious as to why you are asking the question. – Daniel Pryden Aug 3 at 6:46
2  
i work on java so i want to know about the language...:) – Rahul Garg Aug 3 at 6:55
1  
Really? I drive a car but I couldn't give two hoots about how engines work :-) – paxdiablo Aug 3 at 7:10
7  
... you would if you are a mechanical engineer... – Mario Ortegón Aug 3 at 8:45
2  
Its your perspective.Lets say u worked on some technology for 20 years and interviewer ask you what language it is written or how it work then you can say you don't care it means you just want to write if else in the language not want to really understand the language. – Rahul Garg Aug 3 at 11:14
show 4 more comments

7 Answers

vote up 8 vote down check

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.

  • The Sun JVM is written in C, although this need not be the case - the JVM as it runs on your machine is a platform-dependent executable and hence could have been originally written in any language. For example, the original IBM JVM was written in Smalltalk

  • The Java libraries (java.lang, java.util etc, often referred to as the Java API) are themselves written in Java, although methods marked as native will have been written in C or C++.

  • I believe that the Java compiler provided by Sun is also written in Java. (Although again, there are multiple compilers out there)

link|flag
I think he means "java" the program that you use to start a JVM. – Stephen C Aug 3 at 7:44
vote up 6 vote down

From Java Docs

The compiler is written in Java and the runtime is written in ANSI C

link|flag
Very first Java compiler developed by Sun Microsystems was written in C using some libraries from C++ en.wikipedia.org/wiki/Java_compiler – Rahul Garg Aug 3 at 7:00
This is really rather an old document (>10 years by the look of things). For example, it says "Java bytecodes are translated on the fly to native machine instructions (interpreted) and not stored anywhere" which has not been true for about 5 years! – oxbow_lakes Aug 3 at 7:02
Well, since when has documentation been really up-to-date, especially after large changes? :) – Esko Aug 3 at 9:41
Well - the answer isn't really correct; the Sun JVM is written in C, and the Sun java compiler is written in Java. The first IBM JVM was written in Smalltalk. – oxbow_lakes Aug 3 at 10:36
vote up 3 vote down

This link should answer your question

It seems the compiler is now written in Java, but the runtime is written in ANSI C

link|flag
vote up 3 vote down

Should you wish to, you can download the sources for the OpenJDK from jdk.dev.java.net.

link|flag
vote up 1 vote down

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."

link|flag
vote up 0 vote down

In principle almost anything, usually C

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.