Skip to content

Instantly share code, notes, and snippets.

@alex-ber
Last active October 16, 2019 11:11
Show Gist options
  • Save alex-ber/09981e0d405c037a0a44ba348175cfae to your computer and use it in GitHub Desktop.
Save alex-ber/09981e0d405c037a0a44ba348175cfae to your computer and use it in GitHub Desktop.
Animal
class Animal{
public void sound(){
System.out.println("Animal is making a sound");
}
}
class Horse extends Animal{
@Override
public void sound(){
System.out.println("Neigh");
}
}
public class Driver {
public static void main(String args[]){
Animal obj = new Horse();
obj.sound();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment