Chapter1.Breaking the Sur face
The Way Java Works
Creat a source document.
Run your document through a source code compiler.
The compiler checks for errors and won't(will not) let you compile until it's satisfied that everthing will run correctly.
The compiler creat a new document,coded into Java bytecode.
Any device capable of running Java will be able to translate this file into something it can run.
The complied bytecode is platform-independent.
Any device had a virtual Java machine can run the bytecode.
创建一个源码文件
通过编译器运行源码文件编
编译器会检查错误,直到没有错误
编译器会将源码文件创建成二进制文件
任何能运行Java的设备都可以识别这些文件。
被编译的二进制文件是一个独立的平台
任何设备只要有Java虚拟机就可以运行这些二进制文件
Last updated