what is run time polymorphism

Answers were Sorted based on User's Feedback



what is run time polymorphism..

Answer / vijayakumar chinnasamy

In Java Method overriding is the runtime or late binding
polymorphism.

class object is determine which class method is invoked.

ex:

class A {
protected void display(){ }

}

class B extends A {

protected void display(){ }

}

class MainClass {
public static void main(String arg[]){

A objA=null;
objA=new B();
objA.display(); // it invoke the Class B's display()

objA=new A();
objA.display(); // it invoke the Class A's display()

}

}

Note: the class's object only determine which method to call.

Is This Answer Correct ?    2 Yes 0 No

what is run time polymorphism..

Answer / durgasri

In runtime polymorphism ... the code is called at run time
according to need or given conditions.

suppose there r two methods namely Add() one in super class
and other is in sub class.both have the same name and same
parameters.

so we have to choose that which method from them shld
called at run time i.e. of super class or of sub class.by
polymorphism we do that.

ex:-

class A

{

int add(){//code of the method}

//some other code

}

class B extends A

{

int add(){//code of the method}

//some other code

}

class AB

{

public static void main(String s[])

{

A ob1;

ob1=new A();

int i=ob1.add();//will call the method of super class.

ob1=new B();// sub class's reference can be assigned to
super class address but not vice versa.to do that we have
to type cast the reference of the sub class in reference of
the super class.

int j=ob1.add();//will call the method of sub class

}

}

Is This Answer Correct ?    1 Yes 0 No

what is run time polymorphism..

Answer / shiry

In C++ ;
if i have 2 clases
class A {

int x();
}
class B : public A {

int x();
}
void main(){

A* a = new B() ;
a.x(); // it will call the method of the super class A
// not B but in java it will call the method in the
// child B why ??

}

Is This Answer Correct ?    0 Yes 0 No

what is run time polymorphism..

Answer / venu

Runtime polymorphism is nothing but, JVM identifies the behavior (Method) invocation of the reference based on the reference pointing to the Object. Runtime Polymorphism is experimented by an example of Method Overriding.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

How do you make an arraylist empty in java?

0 Answers  


What is the use of coding?

0 Answers  


What is consumer in java?

0 Answers  


What is the advantage of functional interface in java 8?

0 Answers  


What is race condition ?? (Threading concept) TCS 2 sept10

3 Answers   SparkTG, TCS,






What is singleton class in ruby?

0 Answers  


String is mutable or immutable?

3 Answers  


Any one can explain how the inerface uses in java. give with example.

1 Answers   IBM,


How to overcome the exception object reference not set to an instance of object?

0 Answers   Wipro,


What are the 6 boolean operators?

0 Answers  


why should we get the following error ? Exception in main method NoClassDefFoundError:classname could anyone give the detail clarification on how java compiler can look for .class file?

2 Answers  


What are the types of relation?

0 Answers  


Categories