document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class PersonaStatic
  2. {
  3.     int id;
  4.     static int CURRENT_ID = 1;
  5.     String nome;
  6.     String cognome;
  7.    
  8.     public PersonaStatic(String nome, String cognome)
  9.     {
  10.         this.nome = nome;
  11.         this.cognome = cognome;
  12.         this.id = this.CURRENT_ID;
  13.         this.CURRENT_ID++; //this.currentId = this.currentId+1;
  14.     }
  15. }
');