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/90ce736366d6b0f97c4c8e55c317610c to your computer and use it in GitHub Desktop.
Save skiabox/90ce736366d6b0f97c4c8e55c317610c to your computer and use it in GitHub Desktop.
Feline abstract class
package com.skiabox.java_apps2;
/**
* Created by administrator on 09/10/2016.
*/
public abstract class Feline extends Animal{
//common Feline methods
public void roam() {
System.out.println("The Felines avoid each other");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment