Skip to content

Instantly share code, notes, and snippets.

View crunchbang's full-sized avatar

Athul Suresh crunchbang

View GitHub Profile
@crunchbang
crunchbang / Test.java
Created July 23, 2017 06:59
Example of run-time polymorphism
public class Test
{
public static void main(String[] args)
{
abc a = new abc();
dog b = new dog();
cat d = new cat();
animal c = a.mno(b);
animal w = a.mno(d);