Polimorfismo Java Ejemplo

public static void main(String[ ] args) {
  Animal a = new Dog();
  Animal b = new Cat();
}
Shiny Sable