我有 3 个不同的类(1 个父类和 2 个子类),并且我创建了一个异构数组:
Parent[] parentArray = new Parent[9];
我想按顺序用 3 个 Parent 对象、3 个 child1 对象和 3 个 child2 对象填充这个数组。
我想知道是否有比这样做更优雅的方法:
parentArray[0] = new Parent();
parentArray[1] = new Parent();
parentArray[2] = new Parent();
parentArray[3] = new Child1();
parentArray[4] = new Child1();
....
parentArray[9] = new Child2();
谢谢!