2
Reply

What is Overloading ? Is it similar to overriding ?

Brijesh Jalan

Brijesh Jalan

14y
4.4k
0
Reply

    Overloading:- function which have same name but different parameters. Overriding:- means change the functionality of base class function or methods in derived class.

    Overloading - Its a concept of writing methods or functions with different parameters, parameter types, in out reference

    Overriding -- Changing the functionality of the method after derived from the base class or inheriting the functionality according to our needs from the base class.