Java Bytecode: Difference between revisions

From GM-RKB
Jump to navigation Jump to search
m (Text replacement - ". ----" to ". ----")
m (Text replacement - "tems]]" to "tem]]s")
 
Line 9: Line 9:
=== 2013 ===
=== 2013 ===
* (Wikipedia, 2013) ⇒ http://en.wikipedia.org/wiki/java_bytecode Retrieved:2013-12-13.
* (Wikipedia, 2013) ⇒ http://en.wikipedia.org/wiki/java_bytecode Retrieved:2013-12-13.
** '''Java bytecode</B> is the form of instructions that the [[Java virtual machine]] executes. Each [[bytecode]] [[opcode]] is one byte in length, although some require parameters, resulting in some multi-byte instructions. Not all of the possible 256 [[opcode]]s are used. 51 are reserved for future use. Beyond that, [[Sun Microsystems]], the original developer of the [[Java platform]], had set aside three values to be permanently unimplemented.<ref name="reserved_opcodes">[http://docs.oracle.com/javase/specs/jvms/se7/html/jvms-6.html#jvms-6.2 VM Spec - Reserved Opcodes] </ref>
** '''Java bytecode</B> is the form of instructions that the [[Java virtual machine]] executes. Each [[bytecode]] [[opcode]] is one byte in length, although some require parameters, resulting in some multi-byte instructions. Not all of the possible 256 [[opcode]]s are used. 51 are reserved for future use. Beyond that, [[Sun Microsystem]]s, the original developer of the [[Java platform]], had set aside three values to be permanently unimplemented.<ref name="reserved_opcodes">[http://docs.oracle.com/javase/specs/jvms/se7/html/jvms-6.html#jvms-6.2 VM Spec - Reserved Opcodes] </ref>
<references/>
<references/>
<BR>
<BR>

Latest revision as of 21:14, 9 May 2024

A Java Bytecode is an intermediate representation language for a Java Virtual Machine.



References

2013