what is an virtual function
Answers were Sorted based on User's Feedback
Answer / ejp
There are no virtual functions in Java so the question is
futile. There are non-final functions, which can be
overridden by a derived class.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / nishi tomar
A virtual function is a member function of a class, whose
functionality can be over-ridden in its derived classes. It
is one that is declared as virtual in the base class using
the virtual keyword. The virtual nature is inherited in the
subsequent derived classes and the virtual keyword need not
be re-stated there. The whole function body can be replaced
with a new set of implementation in the derived class.
| Is This Answer Correct ? | 3 Yes | 5 No |
Where are variables stored?
Why is a constant variable important?
What are wrapped classes in java programming?
What does indexof return in java?
What part of memory - Stack or Heap - is cleaned in the garbage collection process?
When is update method called?
I am unable to find or learn about print command. I have a graphical program in core java in applet but i want to give print command but i have coding for that so if anyone know about this plz mail me on avdhesh_chauhan007@yahoo.co.in
Keywords in Exceptions?
How to find the size of an array a)array.length() b)array.length c)array.size() d)array.size
What are the main features of java?
What is difference between static class and singleton pattern?
What is general methodology?