diff between Virtual mathod and abstract method?
Answer / pawan kumar
Virtual methods have an implementation and provide the derived classes with the option of overriding it. Abstract methods do not provide an implementation and force the derived classes to override the method. So, abstract methods have no actual code in them, and subclasses HAVE TO override the method.
| Is This Answer Correct ? | 0 Yes | 0 No |
when my application exe is running nad i don't want to create another exe what should i do
c++ is a pure object oriented programming or not?
Write 7 differences between "Public" function and "Private" function?
What is object and example?
What is static modifier?
What is property in oops?
What is a null tree?
Example for 4 pillar of oops like, Inheritance,Poly,Abstraction,Encabsulation ?
What is polymorphism used for?
Is oop better than procedural?
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; wow *b; a.x = 22; b = &a; a.x = 23; cout << b->x; return 0; }
Definition of Object Oriented Programming in single line?
33 Answers Impact Systems, Q3 Technologies, TCS,