Why a private method is not there when i use javap classname on
console after compiling that java file?
class A
{
    private void one(){}
    public void two(){}
    protected void three(){}
}
Why a private method is not there when i use javap classname on
console after compiling that java file?
class A
{
    private void one(){}
    public void two(){}
    protected void three(){}
}
 
    
     
    
    Private methods are not displayed by default, you need to use:
javap -private A
