Skip to content

Instantly share code, notes, and snippets.

@skiabox
Created October 13, 2016 22:53
Show Gist options
  • Save skiabox/e9f3208d4ac4a2c87a8d00d99541dfe6 to your computer and use it in GitHub Desktop.
Save skiabox/e9f3208d4ac4a2c87a8d00d99541dfe6 to your computer and use it in GitHub Desktop.
Dog class
package com.skiabox.java_apps2;
/**
* Created by administrator on 10/10/2016.
*/
public class Dog extends Canine{
@Override
public void makeNoise() {
System.out.println("The dog barks");
}
@Override
public void eat() {
System.out.println("The dog is eating " + Food.GRASS);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment