compilation process of classic languages :
source code goes through complier , translate into object code(0和1),和some other library get linked together into one executable file
JAVA interpreter:
source code goes through complier ,what comes out of it is a class file (非0和1), 和some other library get linked together in a jar archive , and go into JVM to run.
本文介绍了经典编程语言的编译流程:源代码通过编译器转换为可执行文件;并详细解析了Java语言的运行机制:源代码经过编译后生成class文件,并在Java虚拟机中运行。

被折叠的 条评论
为什么被折叠?



