目前我的应用程序具有以下类层次结构:
- “A 类”是父类
- “B 类”是“A 类”的子类
- “C 类”是“A 类”的子类
目前,“A 类”有一个名为“属性 D”的属性,该属性对于“B 类”是必需的,但在“C 类”中是可选的。
我可以知道表示此数据结构的最佳方式吗?这样,与其让其他人引用 ClassA.getAttributeD 而不检查它是否为 NULL,不如强制他们使用 Class B 和 Class C 来引用该字段
目前我的应用程序具有以下类层次结构:
目前,“A 类”有一个名为“属性 D”的属性,该属性对于“B 类”是必需的,但在“C 类”中是可选的。
我可以知道表示此数据结构的最佳方式吗?这样,与其让其他人引用 ClassA.getAttributeD 而不检查它是否为 NULL,不如强制他们使用 Class B 和 Class C 来引用该字段
Class B
在with中添加一个构造函数Attribute D
。Class 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 {
}
不要过度使用继承。通常它会使事情变得更复杂。您可以在您的问题中看到这一点。
看看这个:
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
为私有来做到这一点,然后声明受保护的方法来访问该属性。这样,子类将能够访问该属性。
使 A 中的字段受保护,或将其保密并使其访问者受到保护。
因此,A 类的用户不能访问该字段,但 B 类和 C 类可以使用它,并且可以为它公开访问器。