public class ProvaIdentifica { public static void main(String[] args) { Persona p = new Persona("Paolo", "Bianchi"); Studente s = new Studente("Mario", "Rossi", "123456"); Dottorando d = new Dottorando("Mario", "Rossi", "123456", 25); Professore r = new Professore("Luigi", "Neri"); identifica(p); identifica(s); identifica(d); identifica(r); } public static void identifica(Object x) { System.out.println("L'oggetto di classe " + x.getClass() + " dichiara: " + x.toString()); } }