File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ A virtual function is a member function which is declared within a base class an
3
3
4
4
Virtual functions ensure that the correct function is called for an object, regardless of the type of reference (or pointer) used for function call.
5
5
6
- They are mainly used to achieve Runtime polymorphism
6
+ They are mainly used to achieve Runtime/ dynamic polymorphism
7
7
Functions are declared with a virtual keyword in base class.
8
8
The resolving of function call is done at runtime.
9
9
@@ -44,7 +44,7 @@ int main()
44
44
{
45
45
A *a; // pointer of base class
46
46
B b; // object of derived class
47
- a = &b;
48
- a->display (); // Late Binding occurs
47
+ a = &b; // a is refering to object of class B
48
+ a->display (); // Late Binding occurs; display() of class B is invoked.
49
49
return 0 ;
50
- }
50
+ }
You can’t perform that action at this time.
0 commit comments