What are virtual methods?



What are virtual methods?..

Answer / amit singh

in java all function are virtual.only the function marked
with the final is not virtual.
means to say that if there is any method in super class and
you implemented this method in subclasses too.
then you can invoke on any subcalsses instances refer to
as a superclasses.and the method behaviour will change
according to subcallses instances .
class Amit
{
public void sleep()
{
System.out.println("amit slleping");
}
public static void main(String []args)
{
Amit a = new Amit();
a.sleep();
a = new Subclass1();
a.sleep();
a= new Subclass2();
a.sleep();
}
}

class Subclass1 extends Amit
{
public void sleep()
{
Sysetm.out.println("subclass sleeping");
}
}

class Subclass1 extends Amit
{
public void sleep()
{
System.out.println("subclass 2 sleeping");
}
}
so the output will be
amit sleeping
Subclass1 sleeping
Subclass2 sleeping

so the eat function behave virtualy for the differnt
instance .so this is called the virtual function .so don't
worry every function in java are virtual not the final
function.

Is This Answer Correct ?    5 Yes 0 No

Post New Answer

More Core Java Interview Questions

What is the difference between double and float variables in java?

0 Answers  


What is the difference between state-based unit testing and interaction-based unit testing?

0 Answers  


What is the difference between JVM and JRE?

0 Answers  


What is type conversion in java?

0 Answers  


How to change value in arraylist java?

0 Answers  






whats the life cycle of jsp

2 Answers   Satyam,


explain about method overloading and method overriding with difficult examples

4 Answers  


What is the difference between static and non-static variables?

6 Answers  


What is the primary benefit of encapsulation?

0 Answers  


why are there separate wait and sleep methods? : Java thread

0 Answers  


whats the purposr of using serialization?

6 Answers  


What is java jit compilers?

0 Answers  


Categories