document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class Persona
  2. {
  3.     //PARAMETRI DELLA CLASSE
  4.     String nome;
  5.     String cognome;
  6.     char sesso; //m o f
  7.    
  8.     //COSTRUTTORE
  9.     public Persona(String unNome, String unCognome, char unSesso)
  10.     {
  11.         nome = unNome;
  12.         cognome = unCognome;
  13.         sesso = unSesso;
  14.     }
  15.    
  16.     //METODI
  17.     public void stampaPersona()
  18.     {
  19.         System.out.println("Persona: " + nome + " " + cognome + " di sesso " + sesso);
  20.     }
  21.    
  22.     public int contaCaratteriNome()
  23.     {
  24.         int caratteri = nome.length();
  25.         return caratteri;
  26.     }
  27. }
');