codice:
public Ebook(String title, int year, String genre, String[] people)
{
    super(title, year);
    this.genre = genre;
    this.authors = people;
}
Ti consiglio di usare arraycopy per inizializzare authors. E di dichiarare genre e authors privati (con getter e setter.)