Is java is complier or interpreter ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

Is java is complier or interpreter ?

pls.help.me.

2nd Mar 2017, 4:59 AM
Tiger 68
Tiger 68 - avatar
3 Answers
+ 13
Java is compiled to an intermediate "byte code" at compilation time. This is in contrast to a language like C that is compiled to machine language at compilation time. The Java byte code cannot be directly executed on hardware the way that compiled C code can. Instead the byte code must be interpreted by the JVM (Java Virtual Machine) at runtime in order to be executed. The primary drawback of a language like C is that when it is compiled, that binary file will only work on one particular architecture (e.g. x86). Interpreted languages like PHP are effectively system independent and rely on a system and architecture specific interpreter. This leads to much greater portability (the same PHP scripts work on Windows machines and Linux machines, etc.). However, this interpretation leads to a significant performance decrease. High-level languages like PHP require more time to interpret than machine-specific instructions that can be executed by the hardware. Java seeks to find a compromise between a purely compiled language (with no portability) and a purely interpreted language (that is significantly slower). It accomplishes this by compiling the code into a form that is closer to machine language (actually, Java byte code is a machine language, simply for the Java Virtual Machine), but can still be easily transported between architectures. Because Java still requires a software layer for execution (the JVM) it is an interpreted language. However, the interpreter (the JVM) operates on an intermediate form known as byte code rather than on the raw source files. This byte code is generated at compile time by the Java compiler. Therefore, Java is also a compiled language. By operating this way, Java gets some of the benefits of compiled languages, while also getting some of the benefits of interpreted languages. However, it also inherits some limitations from both of these languages. p.s.stackoverflow...
2nd Mar 2017, 5:16 AM
mr.Frechman
mr.Frechman - avatar
+ 3
And by using Just In Time Compiler (JIT) it compiles byte code to machine code before execution for better performance. So the situation is more complicated.
2nd Mar 2017, 6:15 AM
Tamás Barta
Tamás Barta - avatar
0
have is a interpreter
6th Apr 2017, 11:09 AM
Bihi Makhloufi
Bihi Makhloufi - avatar