Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/12/2014, 03:09
Avatar de Profesor_Falken
Profesor_Falken
 
Fecha de Ingreso: agosto-2014
Ubicación: Mountain View
Mensajes: 1.323
Antigüedad: 10 años, 5 meses
Puntos: 182
Respuesta: Hacer Constructor

Código Java:
Ver original
  1. public Ahorcado (String palabraSecreta) {
  2.     this.secreta = palabraSecreta;
  3.     char[] array = new char[this.secreta.length];
  4.     Arrays.fill(array, '-')
  5.     this.oculta =  new String(array);
  6.     this.fallos = 0;
  7. }

Un saludo
__________________
If to err is human, then programmers are the most human of us