Skip to content

Instantly share code, notes, and snippets.

@penut85420
Created December 13, 2017 19:30
Show Gist options
  • Save penut85420/c63e56f748bb0b493e22a0142d5419e6 to your computer and use it in GitHub Desktop.
Save penut85420/c63e56f748bb0b493e22a0142d5419e6 to your computer and use it in GitHub Desktop.
A note of Overriding.
class Animal {
public String talk() {
return "Hi";
}
}
class Dog extends Animal {
public String talk() {
return "Woof!";
}
}
static void main(String[] args) {
Animal a = new Dog();
a.talk(); // return "Woof!" not "hi"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment