Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package cl.adl.poli;
- import java.util.ArrayList;
- public class Colegio {
- public static void main(String[] args) {
- ArrayList<Persona> listaPersonas = new ArrayList<Persona>();
- listaPersonas.add( new Alumno("1-9", "Pepito", true, 500) ); // esto puede ser a --> Alumno alum = new Alumno("1-9", "Pepito", true);
- listaPersonas.add( new Alumno("2-7", "Carlita", true, 300) );
- listaPersonas.add( new Alumno("3-5", "Carmelo", false, 2000) );
- listaPersonas.add( new Profesor("0-1", "Rodrigo", true, 400f) );
- listaPersonas.add( new Profesor("0-2", "Matilde", true, 500f) );
- for (Persona sujeto :listaPersonas) {
- if (sujeto.getClass() == Alumno.class) {
- Alumno alumnoConDeuda = (Alumno)sujeto;
- System.out.println( alumnoConDeuda.getDeuda());
- }
- if (sujeto.getClass() == Profesor.class) {
- Profesor profe = (Profesor)sujeto;
- System.out.println( profe.getSueldo());
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement