Can a class share a namespace's name?

前端 未结 3 1602
旧时难觅i
旧时难觅i 2020-12-16 11:50

Is the following C++ code valid?

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

namespace Foo
{
         


        
相关标签:
3条回答
  • 2020-12-16 12:21

    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.

    0 讨论(0)
  • 2020-12-16 12:23

    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
    
    0 讨论(0)
  • 2020-12-16 12:30

    "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.

    0 讨论(0)
提交回复
热议问题