What does "p" in "javap" stand for? (The "c" in "javac" stands for compiler)
问题:
回答1:
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
回答2:
it stands for java printer....
回答3:
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.
回答4:
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.
回答5:
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. Thejavap
command prints its output to stdout.
回答6:
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.