Lesson 23 - Namespaces in C++
In the previous lesson, Advanced Inheritance in C++, we were talking about advanced inheritance. In today's C++ tutorial, we're going to focus on namespaces, which serve mainly to group classes in large applications.
Namespaces
When we're creating a larger application, we'll necessarily reach the point where we have a large number of classes. Of course, having 100 classes in a single folder is very confusing. We don't see what the application consists of at first glance and we're tempted to write redundant code, because instead of modifying the existing one, we'll write new code since we don't even know there's already similar code somewhere. This, of course, makes the situation worse. Another problem is name collisions (for example, of our class and a class from a library) that we resolve by assigning long unique names to our classes or by confusing prefixes.
There are several ways to solve the problem of a large number of classes.
Fortunately, C++ supports namespaces, so it's definitely a good idea to use this
mechanism. Namespaces are, among other things, used by the standard library
itself. We're talking about the magic using namespace std;
at the
beginning of the file.
Simply put, namespace is a
...End of the preview...
Continue further
You've come here and that's great! We believe that the first lessons showed you something new and useful
Do you want to continue the course? Go to the premium section.
Buy this course
This article is licensed: Premium, by buying this article, you agree with the terms of use.
- Unlimited and permanent access to individual lessons.
- High quality IT knowledge.
- Skills to help you get your dream and well-paid job.
Article description
Requested article covers this content:
In today's tutorial, we'll explain how namespaces can make our C++ projects more readable.
You gain credits by supporting our network. This is done by sending a helpful amount of money to support the site, or by creating content for the network.