Java compiler/interpreter

后端 未结 6 2062
野性不改
野性不改 2021-01-30 03:43

Why we do we say that Java is a compiled and interpreted language?

What is the advantage of this (being compiled and interpreted)?

6条回答
  •  心在旅途
    2021-01-30 03:52

    This is a long topic and you'd better read about JIT. In short, Java is compiled to bytecode, and the bytecode is later compiled (in the JVM) to machine code.

提交回复
热议问题