Advertisement
wingman007

Java2014_Dog

Dec 15th, 2014
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.58 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6.  
  7. package animals;
  8.  
  9. /**
  10.  *
  11.  * @author fmi
  12.  */
  13. public class Dog extends Animal{
  14.  
  15.     public final String favoriteFood;
  16.    
  17.     {
  18.        favoriteFood = "boons";
  19.     }
  20.    
  21.     public static final String favoriteDrink;
  22.    
  23.     static {
  24.         favoriteDrink = "water";
  25.     }
  26.    
  27.     // @Override
  28.     public void makeNoise() {
  29.         System.out.println("Woof");
  30.     }
  31.    
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement