-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestPersonaje.java
33 lines (29 loc) · 1.42 KB
/
testPersonaje.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package practicaHarry;
public class testPersonaje {
public static void main(String[] args) {
// Modelando 5 objetos de la clase Personaje
Personaje myrtle = new Personaje("Myrtle Elizabeth Warren", "Muggle",
"Femenino", "Ravenclaw", "Desconocido", "Desconocido");
Personaje cedric = new Personaje("Cedric Diggory", "Pura",
"Hufflepuff");
Personaje harry = new Personaje("Harry James Potter", "Mestiza",
"Masculino", "Gryffindor", "Dementor", "Ciervo");
Personaje bellatrix = new Personaje("Bellatrix Lestrange", "Pura",
"Femenino", "Slytherin", "Desconocido", "Desconocido");
Personaje voldemort = new Personaje("Tom Ryddle 'Lord Voldemort'",
"Mestiza", "Slytherin");
cedric.setGenero("Masculino");
cedric.setBoggart("Desconocido");
cedric.setPatronus("Desconocido");
voldemort.setGenero("Masculino");
voldemort.setBoggart("Su propia muerte");
voldemort.setPatronus("Desconocido");
System.out.println(myrtle.showMessage());
System.out.println(cedric.showMessage());
System.out.println(harry.showMessage());
System.out.println(bellatrix.showMessage());
System.out.println(voldemort.showMessage());
System.out.println("Mi personaje favorito de la saga de Harry Potter" +
" es: " + bellatrix.getNombre());
}
}