class Car { String model; int doors; Car(String model, int doors) { this.model = model; this.doors = doors; } Car(int doors) { if (doors < 2) { System.out.println("Is this the batmobile?"); } this("Batmobile", doors); // eroare, apelul "this" nu se află pe prima linie din constructor } Car(String model) { this(model, 4); // corect } }