Skip to content

Instantly share code, notes, and snippets.

@palmerabollo
Last active August 29, 2015 13:56
Show Gist options
  • Save palmerabollo/9210469 to your computer and use it in GitHub Desktop.
Save palmerabollo/9210469 to your computer and use it in GitHub Desktop.
Java inheritance
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