TweetFollow Us on Twitter

Jul 98 Factory Floor

Volume Number: 14 (1998)
Issue Number: 7
Column Tag: From The Factory Floor

The New C++ Standard: Namespaces

by by Andreas Hommel, Howard Hinnant, and Dave Mark, ©1998 by Metrowerks, Inc., all rights reserved.

By the time you read this, the Final Draft International Standard for C++ should be finalized, approved, and made available for purchase (see last month's interview with Ron Liechty for specifics on where to go to get your copy). In this month's column, our old friend Andreas Hommel, along with new friend Howard Hinnant will tackle an important part of the new standard: C++ namespaces.

Andreas Hommel is currently the C/C++ front-end and 68K back-end architect at Metrowerks. After finishing his Master's degree in Computer Science, Andreas did some contract programming in the desktop publishing area and also published several games on the Macintosh and Amiga. He has been with Metrowerks for five years.

Andreas lives in a small country village about 20 kilometers north of Hamburg, with his wife, two Australian Shepherd dogs, two Arabian horses and one Quarter horse. When he is not coding, riding horses or walking his dogs, Andreas likes running, traveling, playing a good video game, and driving really fast on the Autobahn. He also likes cooking and fine red wines (California cabernets, in particular).

Howard Hinnant is a software engineer on the MSL team at Metrowerks, and is responsible for the C++ and EC++ libraries. Howard is a refugee from the aerospace industry where FORTRAN still rules. He has extensive experience in scientific computing including C++ implementations of linear algebra, finite difference and finite element solvers.

Dave: What are C++ namespaces?

Andreas: Namespaces are one of the newer ANSI C++ features. They allow a programmer to define new named or unnamed declarative regions. The original C++ (and ANSI C) only had one global namespace, but now it is possible to have many user defined namespaces.

For example:

namespace metro {
 int foo();
 int bar;
}

defines a namespace 'metro' and declares the namespace member function 'foo' and defines a namespace member variable 'bar'. You can define anything inside a namespace that can be defined in the global C++ namespace, even other nested namespaces. All these namespace members can then be used using qualified-ids.

For example:

int i = metro::foo() + metro::bar;

would call metro's member 'foo()'. So this is very similar to a C++ class definition. In fact we could have created something very similar using static class members:

class metro_class {
public:
 static int foo();
 static int bar;
};

int j = metro_class::foo() + metro_class::bar;

However, there are differences between a class and a namespace. You cannot create any instances of a namespace (ie a namespace variable or a pointer to a namespace) and all data and function namespace members behave like static class members (non-static namespace members wouldn't make any sense when you cannot have a namespace instance). So namespaces have more restrictions than classes. However, they have the advantage that you can split the definition of a namespace over several parts of one or more translation units (ie source and header files). So you can add new definitions later on.

For example

namespace metro {
 int baz();
}

adds the function 'baz' to our 'metro' namespace and this could be done in the same or any other source or header file.

Dave: So you have to use qualified-ids to access namespace members. Are there any mechanisms in C++ to simplify this?

Andreas: Yes, First, you don't have to use qualified-ids if you are accessing namespace members within the same or nested namespace. So you can do something like this:

namespace metro {
  int k = bar;  // no qualification necessary, uses metro::bar
}

or even:

int metro::baz()  // define metro::baz outside of namespace
{
  return foo();  // no qualification necessary, uses metro::foo
}

But, there are also language extensions that simplify the use of namespace members outside of the namespace. One is a 'using-declaration' that can be useful if you are using a particular namespace member over and over again. For example:

using metro::bar;  // using declaration
int m = bar;  // no qualification necessary, uses metro::bar

introduces metro's member bar to the current namespace which enables you to use metro::bar without any qualification.

The other major extension is called a 'using-directive' which will introduce all names defined in a namespace. For example:

using namespace metro;  // using-directive
int n = foo() + baz();  // no qualification necessary, uses 
                        // metro::foo and metro::baz

Dave: What is an unnamed namespace?

Andreas: An unnamed namespace like:

namespace { int o; }

behaves as if was replaced by:

namespace <unique> { }
using namespace <unique>;
namespace <unique> { int o; }

where <unique> is replaced with a translation unit specific identifier that is different from all other identifiers in a program. So it will be possible to access 'o' without any qualifications in the same translation unit:

void f() { o++; } // uses <unique>::o

but, not from any other translation unit. So this is very similar to:

static int o;
void f() { o++; }

The use of the 'static' keyword in namespace scope is actually deprecated in the current C++ draft.

Dave: Why would you want to use namespaces?

Andreas: Namespaces are very useful for libraries because they can be used to avoid name collisions. If you have a program that has a function 'foo' and you want to use a third party library that has a different function with the same name you would have to change your on program or the library to be able to use this library. If this library would have used its own namespace (e.g., 'metro' from the example above) you wouldn't have this problem. A good example for this is the std:: namespace that is used to implement the standard C++ library.

Dave: What did it take to get the libraries under namespace std?

Howard: Putting MSL (Metrowerks Standard Libraries) under namespace std took a lot more work than we had originally envisioned. There were many issues which needed sorting out, prioritizing, and dealing with within the time allowed. Without the aid of the entire MSL Team (headed by Vicki Scott) we would never have pulled it off so quickly. But it was more than just team work within the MSL Team that counted. Tight and rapid response between the MSL Team and the Compiler Team was crucial. There were many very subtle effects and interactions between the compiler's implementation of namespaces, and the library's use of namespaces. Andreas is great at getting to the heart of a problem, and providing a solution in an amazingly short amount of time.

Dave: What effect will namespaces have on legacy code?

Howard: Standard namespaces have quite a bit of backward compatibility built into them to ease the porting of namespace-ignorant code. We have implemented all of this compatibility, and where we thought was important, added even more backward compatibility.

Standard header names have become very particular, and very important. In previous releases, <iostream> and <iostream.h> were interchangeable. So were <cstdio> and <stdio.h>. This is no longer the case. As a general rule of thumb, namespace-ignorant code should use headers that end with the .h extension. If you use the extension-less headers, then your code should be "namespace std aware".

For example, the following HelloWorld will compile and run correctly:

#include <iostream.h>

int main()
{
 cout << "Hi\n";
}

But this will fail with a compiler error:

#include <iostream>

int main()
{
 cout << "Hi\n";
}

You can make the above HelloWorld work in one of two ways: You can provide a using declaration:

#include <iostream>

int main()
{
 using namespace std;
 cout << "Hi\n";
}

Or you can provide the full name of objects in the standard library:

#include <iostream>

int main()
{
 std::cout << "Hi\n";
}

The purpose of namespace std is to keep library names from conflicting with your own. With a name like cout, a conflict doesn't seem likely. But, consider the name vector or stack. Many users might want to use such names. Such users may even be unaware of their existence in the library. Now that these names are under a namespace, such conflicts are less likely.

Dave: Does namespace affect the C library?

Howard: The "C" library is also under namespace std when used from a C++ program. That is, printf's new name is std::printf. Remember, this is only when using the C++ compiler. C programs will continue to use just plain printf. Also note that if a C++ program includes <stdio.h> instead of <cstdio>, then printf is promoted to the global namespace. So again, just plain printf can be used.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Top Mobile Game Discounts
Every day, we pick out a curated list of the best mobile discounts on the App Store and post them here. This list won't be comprehensive, but it every game on it is recommended. Feel free to check out the coverage we did on them in the links... | Read more »
Price of Glory unleashes its 1.4 Alpha u...
As much as we all probably dislike Maths as a subject, we do have to hand it to geometry for giving us the good old Hexgrid, home of some of the best strategy games. One such example, Price of Glory, has dropped its 1.4 Alpha update, stocked full... | Read more »
The SLC 2025 kicks off this month to cro...
Ever since the Solo Leveling: Arise Championship 2025 was announced, I have been looking forward to it. The promotional clip they released a month or two back showed crowds going absolutely nuts for the previous competitions, so imagine the... | Read more »
Dive into some early Magicpunk fun as Cr...
Excellent news for fans of steampunk and magic; the Precursor Test for Magicpunk MMORPG Crystal of Atlan opens today. This rather fancy way of saying beta test will remain open until March 5th and is available for PC - boo - and Android devices -... | Read more »
Prepare to get your mind melted as Evang...
If you are a fan of sci-fi shooters and incredibly weird, mind-bending anime series, then you are in for a treat, as Goddess of Victory: Nikke is gearing up for its second collaboration with Evangelion. We were also treated to an upcoming... | Read more »
Square Enix gives with one hand and slap...
We have something of a mixed bag coming over from Square Enix HQ today. Two of their mobile games are revelling in life with new events keeping them alive, whilst another has been thrown onto the ever-growing discard pile Square is building. I... | Read more »
Let the world burn as you have some fest...
It is time to leave the world burning once again as you take a much-needed break from that whole “hero” lark and enjoy some celebrations in Genshin Impact. Version 5.4, Moonlight Amidst Dreams, will see you in Inazuma to attend the Mikawa Flower... | Read more »
Full Moon Over the Abyssal Sea lands on...
Aether Gazer has announced its latest major update, and it is one of the loveliest event names I have ever heard. Full Moon Over the Abyssal Sea is an amazing name, and it comes loaded with two side stories, a new S-grade Modifier, and some fancy... | Read more »
Open your own eatery for all the forest...
Very important question; when you read the title Zoo Restaurant, do you also immediately think of running a restaurant in which you cook Zoo animals as the course? I will just assume yes. Anyway, come June 23rd we will all be able to start up our... | Read more »
Crystal of Atlan opens registration for...
Nuverse was prominently featured in the last month for all the wrong reasons with the USA TikTok debacle, but now it is putting all that behind it and preparing for the Crystal of Atlan beta test. Taking place between February 18th and March 5th,... | Read more »

Price Scanner via MacPrices.net

AT&T is offering a 65% discount on the ne...
AT&T is offering the new iPhone 16e for up to 65% off their monthly finance fee with 36-months of service. No trade-in is required. Discount is applied via monthly bill credits over the 36 month... Read more
Use this code to get a free iPhone 13 at Visi...
For a limited time, use code SWEETDEAL to get a free 128GB iPhone 13 Visible, Verizon’s low-cost wireless cell service, Visible. Deal is valid when you purchase the Visible+ annual plan. Free... Read more
M4 Mac minis on sale for $50-$80 off MSRP at...
B&H Photo has M4 Mac minis in stock and on sale right now for $50 to $80 off Apple’s MSRP, each including free 1-2 day shipping to most US addresses: – M4 Mac mini (16GB/256GB): $549, $50 off... Read more
Buy an iPhone 16 at Boost Mobile and get one...
Boost Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering one year of free Unlimited service with the purchase of any iPhone 16. Purchase the iPhone at standard MSRP, and then choose... Read more
Get an iPhone 15 for only $299 at Boost Mobil...
Boost Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering the 128GB iPhone 15 for $299.99 including service with their Unlimited Premium plan (50GB of premium data, $60/month), or $20... Read more
Unreal Mobile is offering $100 off any new iP...
Unreal Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering a $100 discount on any new iPhone with service. This includes new iPhone 16 models as well as iPhone 15, 14, 13, and SE... Read more
Apple drops prices on clearance iPhone 14 mod...
With today’s introduction of the new iPhone 16e, Apple has discontinued the iPhone 14, 14 Pro, and SE. In response, Apple has dropped prices on unlocked, Certified Refurbished, iPhone 14 models to a... Read more
B&H has 16-inch M4 Max MacBook Pros on sa...
B&H Photo is offering a $360-$410 discount on new 16-inch MacBook Pros with M4 Max CPUs right now. B&H offers free 1-2 day shipping to most US addresses: – 16″ M4 Max MacBook Pro (36GB/1TB/... Read more
Amazon is offering a $100 discount on the M4...
Amazon has the M4 Pro Mac mini discounted $100 off MSRP right now. Shipping is free. Their price is the lowest currently available for this popular mini: – Mac mini M4 Pro (24GB/512GB): $1299, $100... Read more
B&H continues to offer $150-$220 discount...
B&H Photo has 14-inch M4 MacBook Pros on sale for $150-$220 off MSRP. B&H offers free 1-2 day shipping to most US addresses: – 14″ M4 MacBook Pro (16GB/512GB): $1449, $150 off MSRP – 14″ M4... Read more

Jobs Board

All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.