vote up 25 vote down star
3

A little-used feature of C++ is the ability to create anonymous namespaces, like so:

namespace {
    int cannotAccessOutsideThisFile() { ... }
} // namespace

You would think that such a feature would be useless -- since you can't specify the name of the namespace, it's impossible to access anything within it from outside. But these unnamed namespaces are accessible within the file they're created in, as if you had an implicit using-clause to them.

My question is, why or when would this be preferable to using static functions? Or are they essentially two ways of doing the exact same thing?

flag

7 Answers

vote up 30 vote down check

The C++ Standard reads in section 7.3.1.1 Unnamed Spaces, paragraph 2:

"The use of the static keyword is deprecated when declaring objects in a namespace scope, the unnamed namespace provides a superior alternative."

Static only applies to names of objects, functions and anonymous unions, not to type declarations.

Information liberally taken from here.

link|flag
vote up 1 vote down

Having learned of this feature only just now while reading your question, I can only speculate. This seems to provide several advantages over a file-level static variable:

  • Anonymous namespaces can be nested within one another, providing multiple levels of protection from which symbols can not escape.
  • Several anonymous namespaces could be placed in the same source file, creating in effect different static-level scopes within the same file.

I'd be interested in learning if anyone has used anonymous namespaces in real code.

link|flag
Good speculations, but wrong. The scope of these namespaces is file-wide. – Konrad Rudolph Sep 30 '08 at 19:17
Not exactly true, if you define an anonymous namespace inside another namespace it is still only file wide, and can only be seen as being within that namespace. Try it. – Greg Rogers Sep 30 '08 at 19:29
I could be wrong but, I guess that no, it is not file-wide: It is accessible only to the code after the anonymous namespace. This is a subtle thingy, and usually, I would not want to pollute a source with multiple anonymous namespaces... Still, this can have uses. – paercebal Oct 11 '08 at 21:25
vote up 4 vote down

Use of static keyword for that purpose is deprecated by the C++98 standard. The problem with static is that it doesn't apply to type definition. It's also an overloaded keyword used in different ways in different contexts, so unnamed namespaces simplify things a bit.

link|flag
vote up 5 vote down

Putting methods in an anonymous namespace prevents you from accidentally violating the One Definition Rule, allowing you to never worry about naming your helper methods the same as some other method you may link in.

And, as pointed out by luke, anonymous namespaces are preferred by the standard over static members.

link|flag
I was referring to static stand-alone functions (i.e. file-scoped functions), not static member functions. Static stand-alone functions are much the same as functions in an unnamed namespace, thus the question. – Head Geek Sep 30 '08 at 23:26
Ah; well, the ODR still applies. Edited to remove paragraph. – hazzen Sep 30 '08 at 23:56
vote up 2 vote down

I recently began replacing static keywords with anonymous namespaces in my code but immediately ran into a problem where the variables in the namespace were no longer available for inspection in my debugger. I was using VC60, so I don't know if that is a non-issue with other debuggers. My workaround was to define a 'module' namespace, where I gave it the name of my cpp file.

For example, in my XmlUtil.cpp file, I define a namespace XmlUtil_I { ... } for all of my module variables and functions. That way I can apply the XmlUtil_I:: qualification in the debugger to access the variables. In this case, the '_I' distinguishes it from a public namespace such as XmlUtil that I may want to use elsewhere.

I suppose a potential disadvantage of this approach compared to a truly anonymous one is that someone could violate the desired static scope by using the namespace qualifier in other modules. I don't know if that is a major concern though.

link|flag
vote up 3 vote down

FYI, there is one edge case example where static has a surprising affect (at least it was to me). Under bullet 1 of 14.6.2.4, the standard explicitly states that only functions with external linkage should be found by Argument Dependent Lookup.

template <typename T>
int b1 (T const & t)
{
  foo(t);
}

namespace NS
{
  namespace
  {
    struct S
    {
    public:
      operator void * () const;
    };

    void foo (void*);
    static void foo (S const &);   // Not considered 14.6.4.2(b1)
  }

}

void b2()
{
  NS::S s;
  b1 (s);
}

The above code will call foo(void*) and not foo(S const &) as you might expect. In itself this is probably not that big a deal, but it does highlight that for a fully compliant C++ compiler (ie. one with support for export) the static keyword will still have functionality that is not available in any other way.

// bar.h
export template <typename T>
int b1 (T const & t);

// bar.cc
#include "bar.h"
template <typename T>
int b1 (T const & t)
{
  foo(t);
}

// foo.cc
#include "bar.h"
namespace NS
{
  namespace
  {
    struct S
    {
    };

    void foo (S const & s);  // Will be found by different TU 'bar.cc'
  }

}

void b2()
{
  NS::S s;
  b1 (s);
}

The only way to ensure that the function in our unnamed namespace will not be found by ADL is to make it static.

link|flag
Isn't the export keyword supposed to be cold dead? The only compilers supporting "export" are experimental ones, and unless surprises, "export" won't even be implemented in others because of unexpected side effects (in addition to not doing was it was expected for) – paercebal Oct 11 '08 at 21:20
See Herb Sutter's article on the subjet: gotw.ca/publications/mill23-x.htm – paercebal Oct 11 '08 at 21:23
The front-end from Edison Design Group (EDG) is anything but experimental. It is almost certainly the most standard conforming C++ implementation in the world. The Intel C++ compiler uses EDG. – Richard Corden Oct 12 '08 at 17:03
What C++ feature doesn't have 'unexpected side-effects'? In the case of export, it is that an unnamed namespace function will be found from a different TU - that is the same as if you included the template definition directly. It would be more surprising if it was not like this! – Richard Corden Oct 12 '08 at 17:18
vote up 3 vote down

From experience I'll just note that while it is the C++ way to put formerly-static functions into the anonymous namespace, older compilers can sometimes have problems with this. I currently work with a few compilers for our target platforms, and the more modern Linux compiler is fine with placing functions into the anonymous namespace.

But an older compiler running on Solaris, which we are wed to until an unspecified future release, will sometimes accept it, and other times flag it as an error. The error is not what worries me, it's what it might be doing when it accepts it. So until we go modern across the board, we are still using static (usually class-scoped) functions where we'd prefer the anonymous namespace.

link|flag

Your Answer

Get an OpenID
or

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