4

当我尝试构建此代码时:

// foo.h
namespace foo {
    namespace bar {
        void put();
    }
}
#include "foo.h"
namespace foo {
    namespace {
        template<typename T>
        void put() { }
    }    
    void bar::put() {
        put<int>();
    };
}

我得到错误

foo.cpp: In function ‘void foo::bar::put()’:
foo.cpp: error: expected primary-expression before ‘int’
foo.cpp: error: expected ‘;’ before ‘int’

显然,put<int>put用来指代的bar::put。我怎样才能让它引用put<T>匿名命名空间中的?

4

1 回答 1

4

您可以完全限定函数模板的名称:

namespace foo {
    namespace bar {
        void put();
    }
}

namespace foo {
    namespace {
        template<typename T>
        void put() { }
    }
    void bar::put() {
        ::foo::put<int>();
    }
}

另请注意,您不需要在函数定义后使用分号。

于 2013-02-28T14:07:05.307 回答