What is the Difference between Overriding and overloading?
Answer Posted / yugal
OVERLOADING is the process of declaring the methods having
the same name but diff signatures. Signature means diff
types & number of arguments.
OVERRIDING is the process of overwriting the methods of
base class in Derived Class.
Overriding is the example of run-time polymorphism and
Overloading is the example of compile-time polymorphism.
Overloading
1) Method can have different access specifier.
2) Method can have different return type
3) Method must have same name with different method
signatures.
4) It doesn't need inheritance as method should be in
same class.
Overriding->
1) Method must have same access specifier.
2) Method must have same return type.
3) Method must have same name with same method
signatures.
4) It needs inheritance and virtual keyword before it
declaration.
5) It requires non-static method.
Is This Answer Correct ? | 27 Yes | 5 No |
Post New Answer View All Answers
Explain what observations between vb.net and vc#.net?
What is a preprocessor directive in vb.net?
difference between control and component more than one differences
Tell me which namespace are used for accessing the data?
Can you please explain the difference between namespace and assembly?
What are the shared variables?
Explain public assembly?
What is code access security?
When do you use virutal keyword?
Explain convert.tostrin?
What is misl code?
Which classes a dll can contain?
Explain the advantages of migrating to vb.net?
Explain code security?
What are nested classes?