Skip to content

Instantly share code, notes, and snippets.

@skiabox
Created October 12, 2016 18:32
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/3c664d7ebc28cda0605a3f92fd789d56 to your computer and use it in GitHub Desktop.
Save skiabox/3c664d7ebc28cda0605a3f92fd789d56 to your computer and use it in GitHub Desktop.
Canine abstract class
package com.skiabox.java_apps2;
/**
* Created by administrator on 10/10/2016.
*/
public abstract class Canine extends Animal{
public void roam()
{
System.out.println("The Canines move in packs");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment