Using namespace | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Using namespace

why is this used?

14th Nov 2016, 4:48 PM
Syednisar Ahamed
Syednisar Ahamed - avatar
2 Answers
+ 3
A namespace is used to avoid name collisions. All identifiers inside a namespace are unique, therefore: Namespace1::Foo() is not the same as: Namespace2::Foo() with the "using namespace", we can tell the compiler that we will be using a specific namespace during that section of the code. Take "cout" for example. cout is located inside the std namespace. If you want to use cout you must call it like this: std::cout << "Message"; Or you can call the whole std namespace with "using": using namespace std; cout << "Message"; cin >> variable; We don't need std:: now since we told the compiler we will be using it. You can also avoid calling the whole namespace and instead just call the function or variable you need: using std::cout; cout << "You don't need std here"; std::cin >> variable; //But you do here.
14th Nov 2016, 5:10 PM
ABC
ABC - avatar
+ 1
A namespace is a form of scope in C++ that holds its own definitions for variables, functions, etc. For example, both cout and cin , along with some useful tokens like endl , are defined inside of std for use. As a result, there are two primary ways to access them. The built in C++ library routines are kept in the standard namespace. That includes stuff like cout, cin, string, vector, map, etc. Because these tools are used so commonly, it's popular to add "using namespace std" at the top of your source code so that you won't have to type the std:: prefix constantly
14th Nov 2016, 10:23 PM
Abdelaziz Abubaker
Abdelaziz Abubaker - avatar