Login
Remember
Register
Ask a Question
What is the purpose of using javap?
0
votes
asked
May 7, 2021
in
JAVA
by
sharadyadav1986
What is the purpose of using javap?
#java
javap
Java-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 7, 2021
by
sharadyadav1986
The javap command disassembles a class file. The javap command displays information about the fields, constructors and methods present in a class file.
Syntax
javap fully_class_name
...