/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package jpersonastudente; /** * * @author gabriele */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here Studente s = new Studente("Mario","Versi",12345); System.out.print(s.toString()+"\n"); Persona p = new Persona("Luigia","Stanza"); System.out.print(p.toString()+"\n"); p = s; System.out.print(p.toString()+"\n"); } }