some one give d clear explanation for polymorphism
Answers were Sorted based on User's Feedback
Answer / anjani kumar jha
Java supports two types of polymorphism
1)compile time
2)Run time
1)Compile:---overloading is the best example of compile-
time polymorphism.
Look at this example:----
class NewClass {
public void aSum()
{
System.out.println("hi.......");
}
// NewClass nc1=new InheritClass();
// NewClass nc=new NewClass();
}
class InheritClass extends NewClass
{
@Override
public void aSum()
{
System.out.println("over-riden......");
}
public static void main(String as[])
{
NewClass nc=new NewClass();
NewClass nc1=new InheritClass();
nc.aSum();.......compile time polymorphism
reference type determine which method to be invoke
//nc1.aSum();
}
2)Run time:Over-ridding is the example of run time
polymorphism........
look at example----
class NewClass {
public void aSum()
{
System.out.println("hi.......");
}
// NewClass nc1=new InheritClass();
// NewClass nc=new NewClass();
}
class InheritClass extends NewClass
{
@Override
public void aSum()
{
System.out.println("over-riden......");
}
public static void main(String as[])
{
NewClass nc=new NewClass();
NewClass nc1=new InheritClass();
// nc.aSum();
nc1.aSum(); //object type determine which method
shuold call
//run the example u will get idea about that
}
}
}
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / ullu ka patha
polymorphism is an OOP's concept by virtue of which
different classes are able to use same attributes,functions
and modules with same names.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / jananekrishnan
polymorphism means ability to take more than one form
simply,
polymorphism means
"write once,
run any environment,anytime"
| Is This Answer Correct ? | 1 Yes | 0 No |
swapping program does not use third variable
What is advantage of inheritance?
What is an example of genetic polymorphism?
What does and I oop and sksksk mean?
Describe what an Interface is and how it?s different from a Class.
What are the main differences between procedure oriented languages and object oriented languages?
9 Answers IBM, Infosys, Wipro,
Can static class have constructor?
What is the difference between inheritance and polymorphism?
Finding of the 4 larger (bigger) numbers from the list like{1245,4587,2145,1163,29987,65783.....}
write string class as your own class in java without using any built-in function
Write a program to find out the number of palindromes in a sentence.
What is a class and object?