Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class ClasseEsterna
  2. {
  3.     private String messaggio = "Siamo nella classe ";
  4.     public void stampa()
  5.     {
  6.         System.out.println("esterna");
  7.     }
  8.     ClasseEsistente ce = new ClasseEsistente()
  9.     {
  10.         public void stampa()
  11.         {
  12.             System.out.println("anonima");
  13.         }
  14.     }; //ATTENTI AL PUNTO E VIRGOLA
  15. }