javap classname
为什么在编译该 java 文件后在控制台上使用时没有私有方法?
class A
{
private void one(){}
public void two(){}
protected void three(){}
}
javap classname
为什么在编译该 java 文件后在控制台上使用时没有私有方法?
class A
{
private void one(){}
public void two(){}
protected void three(){}
}