What is javap?The javap is a standard .class file for printer or disassemble. This file converts the description of .class into the original source code.What is javap?The javap is a command that disassembles a class file. It prints out the package, protected, and public fields and methods of the classes passed to it to stdout. This output if formed when no option is stated with javap. i.e. output depends on the options used.
|