Home  >  Article  >  Java  >  javac.exe What is it?

javac.exe What is it?

藏色散人
藏色散人Original
2019-05-22 13:44:1813923browse

javac is the Java language compiler included in the JDK. This tool can compile source files with a .java suffix into bytecode with a .class suffix that can run on the Java virtual machine.

javac.exe What is it?

What is javac.exe?

javac.exe is the java language compiler. javac reads the definitions of classes and interfaces written in the Java language and compiles them into byte code class files.

Note:

javac.exe is written in Java language, not C language.

javac.exe is included in the JDK, but is not part of the JVM. The JVM is only responsible for executing .class files, while javac.exe is responsible for compiling java files into class files.

Related learning recommendations: java basic tutorial

The above is the detailed content of javac.exe What is it?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn