Polymorphism
One into many forms is the concept of polymorphism.
example 1: - method name is same but we can apply for different types arguments(Overloading).
public void m1(int) (Overloading)
public void m1(long) (Overloading)
public void m1(float) (Overloading)