Skip to content

Instantly share code, notes, and snippets.

@kirich1409
Created December 27, 2017 16:00
Show Gist options
  • Save kirich1409/e95064070bf4f6bebc98d14a38c2ff9c to your computer and use it in GitHub Desktop.
Save kirich1409/e95064070bf4f6bebc98d14a38c2ff9c to your computer and use it in GitHub Desktop.
abstract class Animal {
public void voice(){
System.out.println("unknown");
}
}
final class Cat {
public abstract void voice(){
System.out.println("meow");
}
}
public static void main(String[] args) {
Animal animal = new Cat();
animal.voice()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment