Выдает 15 строк, но все равно не проходит валидацию.
package com.javarush.task.task16.task1623;
/*
Рекурсивное создание нитей
*/
public class Solution {
static int count = 15;
static volatile int createdThreadCount;
public static void main(String[] args) {
System.out.println(new GenerateThread());
}
public static class GenerateThread extends Thread {
public GenerateThread() {
super(String.valueOf(++createdThreadCount));
start();
}
public void run() {
while(true) {
if (createdThreadCount < count)
System.out.println(new GenerateThread());
else if (createdThreadCount >= count)
break;
}
}
public String toString() {
return this.getName() + " created";
}
}
}