Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1.  
  2. public class TestaAnimais {
  3.  
  4.     public static void main(String[] args) {
  5.         Peixe p = new Peixe();
  6.         Gato g = new Gato("Tom");
  7.         Animal a = new Peixe();
  8.         Animal ab = new Aranha();
  9.         AnimalDeEstimacao ae = new Gato();
  10.        
  11.         p.caminhar();
  12.         g.brincar();
  13.     }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement