What does “p” in “javap” stand for?

后端 未结 7 1686
长情又很酷
长情又很酷 2021-01-31 02:46

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

相关标签:
7条回答
  • 2021-01-31 03:19

    p = print

    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.

    0 讨论(0)
提交回复
热议问题