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 |
How can we upload the file to the server using servlet?
What is load-on-startup in servlet?
How do we translate jsp?
What are important features of Servlet 3?
What is called servlet mapping?
Explain the different ways for servlet authentication?
What is the protocol used by Server & Client?
Who is responsible for writing a constructor?
Differentiate between the web server and application server?
which type of data passing is used in realtime?
What is the difference between the include() and forward() methods?
What do you mean by default initialization in java servlet?