Skip to content

Instantly share code, notes, and snippets.

@davidtsong
Created June 3, 2014 02: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 davidtsong/f6656e66b4930762112d to your computer and use it in GitHub Desktop.
Save davidtsong/f6656e66b4930762112d to your computer and use it in GitHub Desktop.
Java Abstract Class
//Abstract concepts in OOP
public abstract class Food()
{
public abstract prepare()
{
}
}
public class pancake extends Food()
{
public void prepare()
{
//Make pancake
}
}
public class donut extends Food()
{
public void prepare()
{
//Make donut
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment