Is javac.exe part of the jvm ?

Is javac.exe part of the jvm ?
[38 byte] By [zips123] at [2007-9-30 19:27:02]
# 1
No; a jvm is a Java Virtual Machine that executes Java code that has been tokenized by javac.Look here http://java.sun.com/learning/new2java/index.html
ChuckBing at 2007-7-6 23:40:44 > top of Java-index,Administration Tools,Sun Connection...
# 2

The Java Virtual Machine is part of the JRE or Java Runtime Environment. When you want to execute java programs, you will need to install the JRE.

But whenever you want to write your own java programs, you'll need the J2SDK or Java 2 Software Development Kit. The SDK contains the JRE and a compiler. The JRE will let you run Java programs, the compiler will let you translate the .java files into .class files which contains byte code. ANd it is the JRE who understands this byte code and translates it into the machine code of the OS you've installed your JRE or J2SDK on.

gertcuppens at 2007-7-6 23:40:44 > top of Java-index,Administration Tools,Sun Connection...
# 3

> ANd it is the JRE who understands this byte code and translates it into the machine code of the OS you've installed your JRE or J2SDK on.

Not quite.

The jvm (Java virtual machine) understands byte code and creates code that the underlying OS understands. The OS then creates code that the computer's cpu understands and runs.

ChuckBing at 2007-7-6 23:40:44 > top of Java-index,Administration Tools,Sun Connection...