can u give some realtime example in ploymorphism? and
inheritance?
Answers were Sorted based on User's Feedback
Answer / mani
Human being life is the best example for ploymorphism bcoz
Let one take example
im a son of my parents and also brother of my sister and
the employee of one company ...
Im playing the many role here.
Same example for inheritance also bcoz i have inherited my
father property.
Is This Answer Correct ? | 58 Yes | 4 No |
Answer / suresh
inheritance is hierarchy of class,that is one class derived
from another class
example:
grant father
--father
--son
polymorphism is the ability to take more than one form
example:
compile time polymorphism
--method overloading
people can act many role in the world
home:father
company:employee
run time polymorphism
--method overriding
dog is a class
It contains smile method
Is This Answer Correct ? | 36 Yes | 15 No |
Answer / srinu
polymorphism: Polymorphism one form existing many forms is
called polymorphism.its used for over ridding.
EX:Man
Because A Man go to office he is an Employee.
A Man go to movie he is an auditor.
A man walk with his lover she's boy friend
inheritance is hierarchy of class,that is one class derived
from another class
EX:
grant father
--father
--son
Is This Answer Correct ? | 19 Yes | 8 No |
Answer / walkinglegendteja
Inheritance is a concept which involves the concept of re
usability Ex:Bank Accounts-->SB Account,RD Account,CD Account
Polymorphism concept of one existing in many forms
Ex:In Graphical User interfaces,AWT
Is This Answer Correct ? | 26 Yes | 17 No |
Answer / sai vamsi krishna
An Inheritance is to access the properties from super class to sub class.
example father to son sometmes the father has some diseases like sugar,BP those are attacking to son also.
poymorphism means many forms
example one person acts as many roles in his life a person works at company he is a employee at the same time he is a father of his son.
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / abdulrazak
abstract class Person
{
public String sname(){}
Address ad;
}
class Patient extends Person
{
}
class Employee extends Person
{
}
Here in the above example Person is a class acting two ways
one Patient details info and Employee details. We are
achieving this extends Person i.e inheritence.Inheritence
provides code reusability,extensibility
Is This Answer Correct ? | 10 Yes | 5 No |
Answer / nazneen
Polymorphism applies to Overriding
Inheritance applies to Reusability of code defined earlier in one Class and later on used by Other Classes..
Is This Answer Correct ? | 14 Yes | 11 No |
Answer / babu
Babu torati
METHOD OVERLOADING:Means suppose one man behaving different ways
suppose if is meet his wife he feels different if he meet his girl friend he feels differently means Based on person he meet his behavior will changes.
METHOD OVERRIDING:Means if father is gives some Properties to his son. ex:Bike but father says if you want to change this bike your wish otherwise continue with this bike(i.e no restriction) means gives permission throw the virtual keyword if you want change(override).
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / ashish rathore
Inheritence is a process by which object of one class aquire
the property of any object of another class. it provides the
idea of reusearility.
this means the ability to take more than one form from
existing class without modifying it.
Is This Answer Correct ? | 5 Yes | 3 No |
Answer / dharmaraj
As i dont know these is correct answer but my knowledge is ok.
METHOD OVERLOADING: In one women got many children
(same method name but different parameter).
METHOD OVERRIDING: In women married in two different persons.
(one method two override the another method)
Is This Answer Correct ? | 2 Yes | 3 No |
What are the supporting protocol by HttpServlet ?
What is difference between GenericServlet and HttpServlet?
How do you define a servlet?
how to pass parameter from servlet to html form
What do you mean by request dispatcher in servlet? Also explain its methods.
What is servlet attributes and their scope?
What is a parser. What does a parser do with a XML? Why do we need it?
What methods do you use in servlet - applet communication?
What exception should be thrown when servlet is not properly initialized?
What is servlet and how it works?
Name the different ways of session tracking.
Which event is fired at the time of setting, getting or removing attribute from application scope?