标签: java
可能重复: In Java, what’s the difference between public, default, protected, and private?
具有私有状态的变量与具有受保护状态的变量之间是否存在差异?
private int toto; protected int tata;
答案 0 :(得分:0)
private属性仅对拥有的类可见。 对于所有扩展类,protected属性也是可见的,private属性不是这种情况。
private
protected