Question

What does "p" in "javap" stand for? (The "c" in "javac" stands for compiler)

Was it helpful?

Solution

By default, javap prints declarations of the non-private members of each of the classes specified on the command line

Reference : http://docstore.mik.ua/orelly/java/javanut/ch16_08.htm

OTHER TIPS

it stands for java printer....

It prints the methods declarations in your class and its a very good way to see the how your compiler has interpreted your code and convert your source file into .class format.

The javap command disassembles one or more class files. Its output depends on the options used. If no options are used, javap prints out the package, protected, and public fields and methods of the classes passed to it. javap prints its output to stdout.

javap is part of the official Java tools and allows to disassemble one or more class files.

The "p" in this case stands for print, as in the official documentation is reported that:

... the javap command prints the package, protected and public fields, and methods of the classes passed to it. The javap command prints its output to stdout.

It lists all the methods and variable the specified class contains. You just need to paas the class name with javap command on command-line. e.g. C:\jdk1.3\bin> javap java.lang.Object it will list all the methods Object class contains.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top