Práctica con interfaces
Posted by Danny in Interfaces, Practicas
Vamos a definir el interfaz Cantante, un interfaz muy simple que sólo posee un método: cantar.
Crear el fichero Cantante.java
Agregar el siguiente código:
public interface Cantante
{
public void cantar();
}
Cojamos la clase Persona y hagamos que implemente el interfaz Cantante:
public class Persona implements Cantante
Además agreguemos el código para el método que define el interfaz cantante:
public void cantar()
{
System.out.println("La laa la raa laaa!");
}
Construyamos ahora una clase con función main (ArranqueInterfaz.java)para ejecutar:
public class ArranqueInterfaz
{
public static void main(String arg[])
{
Persona p = new Persona();
hacerCantar(p);
}
public static void hacerCantar(Cantante c)
{
c.cantar();
}
}