What is a namespace in C++? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

What is a namespace in C++?

I know why I should use 'using namespace std;' statement in almost every C++ programs. But what exactly is a namespace? Please explain concisely. Thanks

18th Nov 2016, 8:53 PM
Mark A. Bromuela
Mark A. Bromuela - avatar
1 Resposta
+ 1
It's a way to avoid ambiguous names. If you have two functions both called TestFunc(); then the compiler would not know which one to use. A namespace gives an extra identifier to tell the compiler which function to use. If you define your own function that happens to have the same name as another in a different library, you can't do it. Since you now know a namespace gives you an extra identifier, if the function you want to use exists in a particular namespace (like standard (std)), then you can put std:: before the function to tell the compiler "I want to use the version of this function that exists in the standard namespace".
18th Nov 2016, 9:57 PM
scott johnson
scott johnson - avatar