📜  是 java 编译还是解释 - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:10.530000             🧑  作者: Mango

代码示例1
Java can be considered BOTH a COMPILED and an INTERPRETED language
because its source code is first compiled into a binary byte-code.
  
This byte-code runs on the Java Virtual Machine (JVM), which is
usually a software-based interpreter.