已填充,在GeometricObject中具有私有访问权限

时间:2018-11-28 05:13:39

标签: java

enter image description here enter image description here

对此我有一个错误,我不理解。有人可以向我解释为什么会出现此错误以及如何解决该错误吗?

2 个答案:

答案 0 :(得分:0)

您不能在子类中使用supercalass的私有字段。尝试在受保护的上更改 private 。然后看看this

答案 1 :(得分:0)

基本上,您正在尝试在继承的类中使用父类的私有字段。您可以在protected类中创建字段publicGeometricObjectHere是用Java解释的访问修饰符。

public class GeometricObject
{
     protected String color;
     protected boolean filled;
}