Domanda di colloquio di Garmin

What is function is overloading and Function overriding?

Risposta di colloquio

Anonimo

4 lug 2019

Function overloading is a feature in C++ where two or more functions can have the same name but different parameters.Function overriding is a feature that allows us to have a same function in child class which is already present in the parent class.

1