What does \"p\" in \"javap\" stand for? (The \"c\" in \"javac\" stands for compiler)
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.