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 do I download c++?
What are the four main data types?
Can comments be longer than one line?
How compile and run c++ program in turbo c++?
What does new do in c++?
Which operations are permitted on pointers?
Why was c++ made?
What is a storage class used in c++?
How does code-bloating occur in c++?
What is the difference between #import and #include in c++?
What are inline functions? What is the syntax for defining an inline function?
Differentiate between an inspector and a mutator ?
How come you find out if a linked-list is a cycle or not?
How many standards of c++ are there?
Describe the setting up of my member functions to avoid overriding by the derived class?