what is the purpose of method overriding in java where v r
completely re-defining a inherited method instead y can't v
create a new method and define.If the question is very silly
plz excuse me and do reply.Thank U!
Answer Posted / sridharan
We know method overriding will be coming in inheritance.
Consider a mother and her daughter.
Lets think mothers will cook, so her daughter will also
cook. One day mother cooked a biryani for her daughter. By
using the method
cookBriyani(rice,vegetables,water,salt). {
// mother style of cooking
}
But her daughter didn’t like it. So her daughter decided to
prepare biryani by herself. She is also going to use same
ingredients but she is going to prepare in her style.
Daughter method is
cookBriyani(rice,vegetables,water,salt){
// daughter style of cookling
}
Daughter made also biryani so without changing the
name i.e cookBriyani(), also she used same ingredients (i.e
rice,vegetables,water,salt) i.e same parameter but she
prepared in different style.
| Is This Answer Correct ? | 67 Yes | 6 No |
Post New Answer View All Answers
What does null mean in java?
How to convert string to byte array and vice versa?
What is java autoboxing?
What is the effect of keeping a constructor private?
Where we write javascript code in html page?
What is a nested structure?
What will be the output of round(3.7) and ceil(3.7)?
State the difference between creating string as new () and literal.
Can we create an object of static class in java?
Can a static block throw exception?
Explain the different forms of polymorphism?
What are different types of arrays?
Is math class static in java?
What is the difference between java applets and applications?
Can you explain the cs option of java interpreter?