Last active
August 29, 2015 13:56
-
-
Save palmerabollo/9210469 to your computer and use it in GitHub Desktop.
Java inheritance
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
interface Animal { | |
void eat() | |
} | |
class Mammal implements Animal { | |
void eat() { | |
System.out.println("mammal eating"); | |
} | |
} | |
class Dog extends Mammal { | |
void eat() { | |
System.out.println("dog eating"); | |
} | |
} | |
class App { | |
public static void main(String[] args) { | |
Mammal mammal = new Dog(); | |
mammal.eat(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment