我有一个看起来像这样的方法:
public Person(String name, Person mother, Person father, ArrayList<Person> children) {
this.name=name;
this.mother=mother;
this.father=father;
this.children=children;
}
然而,在尝试创建一个有孩子的新人时,我遇到了问题:
Person Toby = new Person("Toby", null, null, (Dick, Chester));
尽管 Dick 和 Chester 的定义都更进一步。更具体地说,它抱怨 Dick 和 Chester 都不能解析为变量。我是否必须制作一个临时的 ArrayList 并通过它?
谢谢你。