0

目前我的应用程序具有以下类层次结构:

  • “A 类”是父类
  • “B 类”是“A 类”的子类
  • “C 类”是“A 类”的子类

目前,“A 类”有一个名为“属性 D”的属性,该属性对于“B 类”是必需的,但在“C 类”中是可选的。

我可以知道表示此数据结构的最佳方式吗?这样,与其让其他人引用 ClassA.getAttributeD 而不检查它是否为 NULL,不如强制他们使用 Class B 和 Class C 来引用该字段

4

3 回答 3

2

Class B在with中添加一个构造函数Attribute DClass C这个属性只有一个设置器。

abstract class A {
   Object attributeD;

   void setAttributeD(Object attributeD) { this.attributeD = attributeD; }
   Object getAttributeD() { return attributeD; }
}

class B extends A {
   B(Object attributeD) { this.attributeD = attributeD; }
}

class C extends A {
}

不要过度使用继承。通常它会使事情变得更复杂。您可以在您的问题中看到这一点。

于 2012-11-28T09:23:51.647 回答
0

看看这个:

Class A {
    private int d = 1;

    protected int getD() {
        return d;
    }
}

Class B extends A {
    public void doStuff() {
        B b = new B();
        System.out.println(b.getD());  
    }
}

Class C extends A {
    public void doStuff() {
        C c = new C();
        System.out.println(c.getD());  
    }
}

您的主要问题是避免用户访问attribute D. 您可以通过设置attribute D为私有来做到这一点,然后声明受保护的方法来访问该属性。这样,子类将能够访问该属性。

于 2012-11-28T09:38:57.947 回答
0

使 A 中的字段受保护,或将其保密并使其访问者受到保护。

因此,A 类的用户不能访问该字段,但 B 类和 C 类可以使用它,并且可以为它公开访问器。

于 2012-11-28T09:41:09.200 回答