What is javap?

What is javap?

The javap is a standard .class file for printer or disassemble. This file converts the description of .class into the original source code.

What is javap?

The javap is a command that disassembles a class file. It prints out the package, protected, and public fields and methods of the classes passed to it to stdout. This output if formed when no option is stated with javap. i.e. output depends on the options used.
Explain the processes performed by java virtual machine, i.e. loading, linking, initialization
The Java virtual machine dynamically loads, links, and initializes classes and interfaces...
Difference between StringBuilder and StringBuffer class
StringBuffer class is contained in java.lang package. This class is mutable means the character string in a string buffer gets changed....
What is a StringBuffer class?
In contrast to the String class which implements immutable character strings, the StringBuffer class implements mutable character strings...
Post your comment