java bytecodeの例文
もっと例文: 1 2 3 4 5 6 7 8 9 10
- Using the source-level API, programmers can edit a class file without knowledge of the specifications of the Java bytecode; the whole API is designed with only the vocabulary of the Java language.
- For example, the Java compiler, which converts Java source code into Java bytecode ( an intermediate language for the JVM ), is provided as part of the Java Development Kit ( JDK ).
- Java bytecode can either be interpreted at run time by a virtual machine, or it can be compiled at load time or runtime into native code which runs directly on the computer's hardware.
- For example, Common lisp can be compiled to Java bytecode ( then interpreted by the Java virtual machine ), C code ( then compiled to native machine code ), or directly to native code.
- Java itself is platform-independent, and is adapted to the particular platform it is to run on by a Java virtual machine for it, which translates the Java bytecode into the platform's machine language.