public Human(String name, boolean sex, int age, Human... children) { this.name = name; this.sex = sex; this.age = age; Collections.addAll(this.children, children); }