Компилятор не нашел конструктор "Human(<без параметров>)" в классе "com.javarush.task.task08.task0824.Solution.Human"; Требуемые параметры: <без параметров> Найденные параметры: java.lang.String,boolean,int Проверьте правильность переданных параметров. Возможно, вы забыли импортировать нужный класс.. файл com/javarush/task/task08/task0824/Solution.java, строка 12, позиция 213 package com.javarush.task.task08.task0824; import java.util.ArrayList; import java.util.List; /* Собираем семейство */ public class Solution { public static void main(String[] args) { Human child1=new Human("vaca", true, 10); Human child2=new Human("vecf", true, 16); Human child3=new Human("vacve", true, 15); Human father=new Human("Fedya", true, 40); father.children.add(child1); Human mother=new Human("Lena", false, 41); mother.children.add(child2); mother.children.add(child3); Human grandma=new Human("Tanya", false, 80); Human grandma=new Human("Tolya", true, 75); ArrayList <Object> list=new ArrayList<>(); list.addAll(grandma,grandma,father,mother,child1,child2,child3); toString(list); } public static class Human { String name; boolean sex; int age; ArrayList<Human> children=new Human<>(); } public String toString() { String text = ""; text += "Имя: " + this.name; text += ", пол: " + (this.sex ? "мужской" : "женский"); text += ", возраст: " + this.age; int childCount = this.children.size(); if (childCount > 0) { text += ", дети: " + this.children.get(0).name; for (int i = 1; i < childCount; i++) { Human child = this.children.get(i); text += ", " + child.name; } } return text; } }