14.6 — Access functions
In previous lesson , we discussed the public and private access levels. As a reminder, classes typically make their data members private, and private members can not be directly accessed by the public. Consider the following Date class: #include <iostream> class Date { private: int m_year{ 2020 }; int m_month{ …