Can a class share a namespace's name?

2019-02-16 06:51发布

Is the following C++ code valid?

namespace Foo
{
    class Bar
    {
        // Class code here.
    };
}

namespace Foo
{
    namespace Bar
    {
        void SomeFunction();
        {
            // Function code here.
        }
    }
 }

In other words, can there be a namespace with the same name as a class?

3条回答
Animai°情兽
2楼-- · 2019-02-16 07:44

You cannot have the arrangement you have in your question because there is no way to disambiguate Bar.

My compiler says:

error C2757: 'Bar' : a symbol with this name already exists and therefore this name cannot be used as a namespace name
查看更多
ゆ 、 Hurt°
3楼-- · 2019-02-16 07:52

"can there be a namespace with the same name as a class?"

No, If they are in the same namespace, as in your case.

Otherwise, yes. Anything can have the same name as anything else if they are in different namespaces. See this stackoverflow thread as reference.

查看更多
来,给爷笑一个
4楼-- · 2019-02-16 07:57

No, but you can have SomeFunction be a static member of the Bar class.

namespace Foo
{
    class Bar
    {
        // Class code here.
        static void SomeFunction()
        {
            // Function code here.
        }
    };
}

The result is not 100% equivalent to what you want (because of ADL) but the qualified names are what you expect.

查看更多
登录 后发表回答