Java / JDK, JRE, JVM, JIT
Explain the javap command in Java.
The javap command disassembles one or more class files. javap prints out the package, protected, and public fields and methods of the classes passed to it. javap prints its output to stdout.
You may use it to find out what methods are available for a class if you don?t have the source code that was used to create the class.
javap [options] JavaClassName
More Related questions...