Difference between Overloading and Overriding?
Answer Posted / kailash joshi
overloading : class a { volume(int a,int b)
}
class b { public volume(int a,int b,int c)
}
"different signatures"
overriding : class a { public volume(int a,int b)
}
class b { public volume(int a,int b,int c)
}
"same signatures";
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
How to declare a function pointer?
Explain the term memory alignment?
What is cin clear () in c++?
What is the first name of c++?
Which is the best c++ software?
Write about c++ storage classes?
What is wrapper class in c++?
Can comments be longer than one line?
What is bubble sort c++?
Write about the stack unwinding?
What does namespace mean in c++?
What is called array?
We all know that a const variable needs to be initialized at the time of declaration. Then how come the program given below runs properly even when we have not initialized p?
Is sorted c++?
What is an arraylist c++?