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

Make the passage of time your plaything...
While some of us are still waiting for a chance to get our hands on Ash Prime - yes, don’t remind me I could currently buy him this month I’m barely hanging on - Digital Extremes has announced its next anticipated Prime Form for Warframe. Starting... | Read more »
If you can find it and fit through the d...
The holy trinity of amazing company names have come together, to release their equally amazing and adorable mobile game, Hamster Inn. Published by HyperBeard Games, and co-developed by Mum Not Proud and Little Sasquatch Studios, it's time to... | Read more »
Amikin Survival opens for pre-orders on...
Join me on the wonderful trip down the inspiration rabbit hole; much as Palworld seemingly “borrowed” many aspects from the hit Pokemon franchise, it is time for the heavily armed animal survival to also spawn some illegitimate children as Helio... | Read more »
PUBG Mobile teams up with global phenome...
Since launching in 2019, SpyxFamily has exploded to damn near catastrophic popularity, so it was only a matter of time before a mobile game snapped up a collaboration. Enter PUBG Mobile. Until May 12th, players will be able to collect a host of... | Read more »
Embark into the frozen tundra of certain...
Chucklefish, developers of hit action-adventure sandbox game Starbound and owner of one of the cutest logos in gaming, has released their roguelike deck-builder Wildfrost. Created alongside developers Gaziter and Deadpan Games, Wildfrost will... | Read more »
MoreFun Studios has announced Season 4,...
Tension has escalated in the ever-volatile world of Arena Breakout, as your old pal Randall Fisher and bosses Fred and Perrero continue to lob insults and explosives at each other, bringing us to a new phase of warfare. Season 4, Into The Fog of... | Read more »
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 below... | Read more »
Marvel Future Fight celebrates nine year...
Announced alongside an advertising image I can only assume was aimed squarely at myself with the prominent Deadpool and Odin featured on it, Netmarble has revealed their celebrations for the 9th anniversary of Marvel Future Fight. The Countdown... | Read more »
HoYoFair 2024 prepares to showcase over...
To say Genshin Impact took the world by storm when it was released would be an understatement. However, I think the most surprising part of the launch was just how much further it went than gaming. There have been concerts, art shows, massive... | Read more »
Explore some of BBCs' most iconic s...
Despite your personal opinion on the BBC at a managerial level, it is undeniable that it has overseen some fantastic British shows in the past, and now thanks to a partnership with Roblox, players will be able to interact with some of these... | Read more »

Price Scanner via MacPrices.net

You can save $300-$480 on a 14-inch M3 Pro/Ma...
Apple has 14″ M3 Pro and M3 Max MacBook Pros in stock today and available, Certified Refurbished, starting at $1699 and ranging up to $480 off MSRP. Each model features a new outer case, shipping is... Read more
24-inch M1 iMacs available at Apple starting...
Apple has clearance M1 iMacs available in their Certified Refurbished store starting at $1049 and ranging up to $300 off original MSRP. Each iMac is in like-new condition and comes with Apple’s... Read more
Walmart continues to offer $699 13-inch M1 Ma...
Walmart continues to offer new Apple 13″ M1 MacBook Airs (8GB RAM, 256GB SSD) online for $699, $300 off original MSRP, in Space Gray, Silver, and Gold colors. These are new MacBook for sale by... Read more
B&H has 13-inch M2 MacBook Airs with 16GB...
B&H Photo has 13″ MacBook Airs with M2 CPUs, 16GB of memory, and 256GB of storage in stock and on sale for $1099, $100 off Apple’s MSRP for this configuration. Free 1-2 day delivery is available... Read more
14-inch M3 MacBook Pro with 16GB of RAM avail...
Apple has the 14″ M3 MacBook Pro with 16GB of RAM and 1TB of storage, Certified Refurbished, available for $300 off MSRP. Each MacBook Pro features a new outer case, shipping is free, and an Apple 1-... Read more
Apple M2 Mac minis on sale for up to $150 off...
Amazon has Apple’s M2-powered Mac minis in stock and on sale for $100-$150 off MSRP, each including free delivery: – Mac mini M2/256GB SSD: $499, save $100 – Mac mini M2/512GB SSD: $699, save $100 –... Read more
Amazon is offering a $200 discount on 14-inch...
Amazon has 14-inch M3 MacBook Pros in stock and on sale for $200 off MSRP. Shipping is free. Note that Amazon’s stock tends to come and go: – 14″ M3 MacBook Pro (8GB RAM/512GB SSD): $1399.99, $200... Read more
Sunday Sale: 13-inch M3 MacBook Air for $999,...
Several Apple retailers have the new 13″ MacBook Air with an M3 CPU in stock and on sale today for only $999 in Midnight. These are the lowest prices currently available for new 13″ M3 MacBook Airs... Read more
Multiple Apple retailers are offering 13-inch...
Several Apple retailers have 13″ MacBook Airs with M2 CPUs in stock and on sale this weekend starting at only $849 in Space Gray, Silver, Starlight, and Midnight colors. These are the lowest prices... Read more
Roundup of Verizon’s April Apple iPhone Promo...
Verizon is offering a number of iPhone deals for the month of April. Switch, and open a new of service, and you can qualify for a free iPhone 15 or heavy monthly discounts on other models: – 128GB... Read more

Jobs Board

Relationship Banker - *Apple* Valley Financ...
Relationship Banker - Apple Valley Financial Center APPLE VALLEY, Minnesota **Job Description:** At Bank of America, we are guided by a common purpose to help Read more
IN6728 Optometrist- *Apple* Valley, CA- Tar...
Date: Apr 9, 2024 Brand: Target Optical Location: Apple Valley, CA, US, 92308 **Requisition ID:** 824398 At Target Optical, we help people see and look great - and Read more
Medical Assistant - Orthopedics *Apple* Hil...
Medical Assistant - Orthopedics Apple Hill York Location: WellSpan Medical Group, York, PA Schedule: Full Time Sign-On Bonus Eligible Remote/Hybrid Regular Apply Now Read more
*Apple* Systems Administrator - JAMF - Activ...
…**Public Trust/Other Required:** None **Job Family:** Systems Administration **Skills:** Apple Platforms,Computer Servers,Jamf Pro **Experience:** 3 + years of Read more
Liquor Stock Clerk - S. *Apple* St. - Idaho...
Liquor Stock Clerk - S. Apple St. Boise Posting Begin Date: 2023/10/10 Posting End Date: 2024/10/14 Category: Retail Sub Category: Customer Service Work Type: Part Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.