为什么程序中age属性我用了protected 修饰符 在通过在同包中的其它类不能调用 而默认的却可以调用 不是默认的安全性要高吗?
public class Animal {
proteceed int age ;
public int big ;
public void eat(){
System.out.println("动物在吃饭!!");
}
}
public class Animal {
proteceed int age ;
public int big ;
public void eat(){
System.out.println("动物在吃饭!!");
}
}
2016-09-09
举报