[Basic C++] 04 - Namespace in C++
2020. 5. 6.
1. What are NAMESPACES? In this example, we are going to talk about "Namespace" in C++. Namespaces are just as simple as it sounds. They are spaces containing C++ entities like objects and functions under certain unique names. Imagine there are three people whose names are all Tom but live in five different areas like, England, Japan, and Brazil. Namespaces are like the name of those countries. ..