Skip to content

Instantly share code, notes, and snippets.

@skiabox
Created October 12, 2016 19:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skiabox/b1cc33c0f068d00d6dede049530a1695 to your computer and use it in GitHub Desktop.
Save skiabox/b1cc33c0f068d00d6dede049530a1695 to your computer and use it in GitHub Desktop.
Hippo class
package com.skiabox.java_apps2;
/**
* Created by administrator on 10/10/2016.
*/
public class Hippo extends Animal{
@Override
public void makeNoise() {
System.out.println("The hippo snarls");
}
@Override
public void eat() {
System.out.println("The hippo is eating " + Food.GRASS);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment