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

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

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

7条回答
  •  天涯浪人
    2021-01-31 03:16

    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.

提交回复
热议问题