在这里,
我有这种情况:
public class A{
//attributes and methods
}
public class B{
//attributes and methods
}
public class C{
private B b;
//other attributes and methods
}
public class D{
private C c1, c2, c3;
private List<A> a;
//other attributes and methods
}
每个类都有自己的文件。但是,我希望将 A、B 和 C 类作为 D 类的内部类,因为我没有在整个程序中使用它们,只是在其中的一小部分中使用它们。我应该如何实施它们?我已经读过它,但我仍然不确定什么是最好的选择:
选项 1,使用静态类:
public class D{
static class A{
//attributes and methods
}
static class B{
//attributes and methods
}
static class C{
private B b;
//other attributes and methods
}
private C c1, c2, c3;
private List<A> a;
//other attributes and methods
}
选项 2,使用接口和实现它的类。
public interface D{
class A{
//attributes and methods
}
class B{
//attributes and methods
}
class C{
private B b;
//other attributes and methods
}
}
public class Dimpl implements D{
private C c1, c2, c3;
private List<A> a;
//other attributes and methods
}
我想知道哪种方法更好,以便使用原始场景获得相同的行为。如果我使用选项 1 并使用这样的类可以吗?
public method(){
List<D.A> list_A = new ArrayList<D.A>();
D.B obj_B = new D.B();
D.C obj_C1 = new D.C(obj_B);
D.C obj_C2 = new D.C(obj_B);
D.C obj_C3 = new D.C(obj_B);
D obj_D = new D(obj_C1, obj_C2, obj_C3, list_A);
}
基本上,我关心的是内部类的创建将如何影响外部类。在原始场景中,我首先创建类 A、B 和 C 的实例,然后创建类 D 的实例。我可以用我提到的选项做同样的事情吗?