“Como fazer dois construtores com super” Respostas de código

Como fazer dois construtores com super

public Student(double avgGPA, int ID, String[] classes, String name){
    super(name);
    setVars(avgGPA, ID, classes);
}

public Student(double avgGPA, int ID, String[] classes, String name, int age){
    super(name, age);
    setVars(avgGPA, ID, classes);
}

public Student(double avgGPA, int ID, String[] classes, String name, int age, String homeTown){
    super(name, age, homeTown);
    setVars(avgGPA, ID, classes);
}

private void setVars(double avgGPA, int ID, String[] classes) {
    this.avgGPA = avgGPA;
    this.ID = ID;
    this.classes = classes;
}
Tense Tiger

Como fazer dois construtores com super

public Person(String name){
    this(name, 18, "Atlanta");
}

public Person(String name, int age){
    this(name, age, "Atlanta");
}

public Person(String name, int age, String homeTown){
    this.name = name;
    this.age = age;
    this.homeTown = homeTown;   
}
Tense Tiger

Respostas semelhantes a “Como fazer dois construtores com super”

Perguntas semelhantes a “Como fazer dois construtores com super”

Mais respostas relacionadas para “Como fazer dois construtores com super” em Java

Procure respostas de código populares por idioma

Procurar outros idiomas de código