AMD Interview Question

questions on overriding, overloading.

Interview Answer

Anonymous

Oct 24, 2016

Overloading is when we have same methods (name, class) but different signature (arguments). Overriding is when we have one (virtual) method defined in parent class that we override with implementation in child class, both have same signature.