What are virtual functions?
Answers were Sorted based on User's Feedback
Answer / qapoo
A function is declared virtual in base class when u are
having same functions in both base and derived classes and
you want to access both the functions with same function
call and its done using base class pointer.
e.g
class base
{
public:
void show(){cout<<"hi"};
};
class derived:pubic base
{
public:
void show(){cout<<"bye";}
};
int main()
{
base *ptr;
base b;
derived d;
ptr=&b;
ptr->show();//base class fn is called
ptr=&d;
ptr->show();//derived class fn is called
return 0;
}
| Is This Answer Correct ? | 7 Yes | 3 No |
Answer / nikhil kapoor
The function which supports run time polymorphysm is called
virtual function...
| Is This Answer Correct ? | 3 Yes | 2 No |
What is overloading in oop?
What is overloading and its types?
function overridind means and simple program
ambiguity regulation of multiple inheritance with example.
what is overloading
what is the diffrence between c# and c++
Can abstract class have normal methods?
what is virtual function?
Program to print 0 to 9 in cross order
What is polymorphism what is it for and how is it used?
What is a superclass in oop?
Can an interface inherit a class?