explain method overridding method overloding with examples?
Answer Posted / muthusenthil
method overloading is to load some extra features in
existing method eg: a method takes string as an arguments
but overloaded method may take int along with String
trapPerson(String name)- pre-existing method
trapPerson(String name,int age)- overloaded method
(irrespective of return type)
this may take place in same class or derived clas
method overridding is to override a method from parentclass
to change its behaviour.name should be same as parentclass
method, behaviour may change
it should takes place between derived class
eg: class man extends superman
int walk() be one among characterstics of man overridden by
superman.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What is discontinuous strut?
What is DynaActionForm?
How do I install struts?
What are the contents on web.xml in struts application ?
Explain about the future of struts?
What is the use of struts config xml file?
What is the purpose of @emailvalidator?
What is the forward action utilized for?
How many action classes can be used in struts application?
What is struts-default package and what are it’s benefits?
What is container struts2?
What is the purpose of @action annotation?
If the framework doesn’t do what I want, can I request that a feature be added?
What is the purpose of @requiredstringvalidator annotation?
What are the Core classes of Struts Framework?