Top Categories
7.12 How to use javap Command in Java Tutorial
- Category:
- Sub Category:
Using javap command we can get the structure of a class of .class file. It just give you the overall structure of the class i.e fields ,constructors and methods present in a class file and not the code written inside the class. This command returns the structure of user –defined classes as
Using javap command we can get the structure of a class of .class file. It just give you the overall structure of the class i.e fields ,constructors and methods present in a class file and not the code written inside the class. This command returns the structure of user –defined classes as well as pre-defined classes.