+ 2
What is the compiler of java
java
2 ответов
+ 11
🔥The java Programming Language Compiler (javac), included in the Java Development Kit from Oracle Corporation, open-sourced since 13 November 2006 .
🔥GNU Compiler for Java (GCJ), a part of the GNU Compiler Collection, which compiles C,C++, Fortran, Pascal and other programming languages besides Java.
🔥Eclipse Compiler for Java (ECJ), an open source incremental compiler used by the Eclipse project.
+ 8
//it compiles java class file ,
//this makes java platform independent
// actually java has compiler as javac which convert java source code to byte code (this byte code is independent of platform)
// now for differnt windows platform , the interpreter JVM (java virtual machine) , will convert this byte code into machine code after verification