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

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

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

7条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-31 03:15

    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.

提交回复
热议问题