Diffrernce Between Overloading and Overriding?
Answers were Sorted based on User's Feedback
Answer / anupam mittal
In overloading all the function have same name but
different in no. of argument, type of argument and oreder
of argurmnt while in case of overriding both function are
defined in differenet class when a function inherit from
parent class and there is a function with same prototype in
child class then child class function override the parent
class funciton.
| Is This Answer Correct ? | 11 Yes | 2 No |
Answer / sourisengupta
OverLoading :- Method Name remains the same with different
signatures.
For ex:- Take a method name vehicle.
if u are passing two parameters to it , it will generate
informations for 2 wheelers .
if u are passing four parameters to it, it will generate
informations for 4 wheelers.
shortly we can tell same with different characteristics.
Overriding : - Method name and signatures must be same.
In overriding user can change the behaviour of the method
for the derived class.
| Is This Answer Correct ? | 3 Yes | 0 No |
What are stl algorithms?
How do I convert a stl file?
what is c++
What is stl stack?
write a program to search and display the position of an element in a single-dimentional array using function.
Assume I have a linked list contains all of the alphabets from "A" to "Z?" I want to find the letter "Q" in the list, how does you perform the search to find the "Q?"
Explain how to insert a hyperlink in to an Excel worksheet and save a Word document as a Web page.
Define the terms: field, record, table and database
sir please send me bpcl previous question papers
0 Answers BPCL Bharat Petroleum,
Give the output of the following program main() {char *p='a'; int *i=100/*p; } what will be the value of *i= 1
what's the difference between abstract class and concreate class? what's the meaning of standard template library(STL)?
what is template and type convertion