Skip to content

Instantly share code, notes, and snippets.

@skiabox
Created October 13, 2016 22:55
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/d43fcb60ddecf250798ad7688cc906f9 to your computer and use it in GitHub Desktop.
Save skiabox/d43fcb60ddecf250798ad7688cc906f9 to your computer and use it in GitHub Desktop.
Tiger class
package com.skiabox.java_apps2;
/**
* Created by administrator on 10/10/2016.
*/
public class Tiger extends Feline{
@Override
public void makeNoise() {
System.out.println("The tiger is growling");
}
@Override
public void eat() {
System.out.println("The tiger is eating" + Food.MEAT);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment