Skip to content

Commit 50e6387

Browse files
committed
notes line 6 updated
line 47 &b 48 comments updated
1 parent 1cee2b3 commit 50e6387

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

virtualFunc.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ A virtual function is a member function which is declared within a base class an
33
44
Virtual functions ensure that the correct function is called for an object, regardless of the type of reference (or pointer) used for function call.
55
6-
They are mainly used to achieve Runtime polymorphism
6+
They are mainly used to achieve Runtime/ dynamic polymorphism
77
Functions are declared with a virtual keyword in base class.
88
The resolving of function call is done at runtime.
99
@@ -44,7 +44,7 @@ int main()
4444
{
4545
A *a; //pointer of base class
4646
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.
4949
return 0;
50-
}
50+
}

0 commit comments

Comments
 (0)