vote up 11 vote down star

I am working on some code written by a co-worker who no longer works with the company, and I have found the following code: (which I have cut down below)

namespace NsA { namespace NsB { namespace NsC {

    namespace { 
    	class A { /*etc*/ };
    	class B { /*etc*/ };
    }    

    namespace {
    	class C { /*etc*/ };
    }
} } }

I don't understand the purpose of the namespace commands on lines 3 and 8.
Can someone explain what the purpose of an namespace entry with no name is?
Thanks

flag

1 Answer

vote up 29 vote down check

That's an "anonymous namespace" - which creates a hidden namespace name that is guaranteed to be unique per "translation unit" (i.e. per CPP file).

This effectively means that all items inside that namespace are hidden from outside that compilation unit. They can only be used in that same file. See also this article on unnamed namespaces.

link|flag
Interesting. I didn't know you could do that. I'll have to keep it in mind. – Herms Nov 25 '08 at 15:44
It also obscolesces the need of static variables (compilation unit visibility) – xtofl Nov 25 '08 at 16:08
1  
static is still useful occasionally. it will make the names not have extern linkage, while anonymous namespaces will name change the linkage of the names. – Johannes Schaub - litb Nov 25 '08 at 16:09
Hm, I thought unnamed namespaces forced internal linkage, but just looked it up, looks like you're right. Fancy that... :) – jalf Nov 25 '08 at 16:18
@GregRogers: Yes linkage matters, templates can only be instantiated with objects of external linkage (e.g. try declaring a class inside a function and using it inside vector< >, won't work, class in unnamed namespace outside function: will work...) – Pieter Nov 25 '08 at 16:37
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.