Member Function Example
Member functions are further explained using an example in this lesson.
We'll cover the following...
increment()
member function
Let’s define a member function that adds a duration to TimeOfDay
objects.
Before doing that, let’s first correct a design flaw that we have been living with. We have seen in the ...