[Basic C++] 20 - Static members / Const members / Static const members in C++
2020. 7. 15.
From the previous post, the "static" and "const keywords were introduced briefly. Those keywords are complicated to use, as their behaviors are flexible under different situations. On the contrary, when they are brought in C++ class, the behaviors of them are pretty straightforward. In this post, I am going to talk about static members, const members, and static const members in C++ class and ho..