Java Abstract Class
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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