miracle tool: javap
It has been disturbing me for a very long time that how Java byte-code are executed and the organization of heap/stack in JVM:
Now I have a tutorial over steps towards JVM Internals
Today I will introduce the code dissamble tool: javap
, which could be great helpfull when dive into JVM
1 |
|
In default, -public
will be set.
So, if you want to print all information of a .class
file, you need to execute:javap -v -s -p name.class
miracle tool: javap
https://rug.al/2014/2014-01-11-miracle-tool-javap/