Skip to content

Latest commit

 

History

History
18 lines (8 loc) · 222 Bytes

File metadata and controls

18 lines (8 loc) · 222 Bytes

Java

Exercise

Compile to Bytecode

javac SimpleCalculator.java

This will create a new file called SimpleCalculator.class

Analyse Bytecode

javap -c SimpleCalculator

See how the Bytecode works!