嵌套名称说明符

时间:2011-06-27 06:34:34

标签: c++ templates generic-programming

我有一个代码:

namespace mymap {
    template <class Key,template <typename T > class Allocator> myownmap {
        typedef pair<const unsigned int, Key> typename _myPair;
        typedef multimap<unsigned int, Key,less<Key> ,Allocator<_myPair> > typename _entriesType;
    }
}

它在MSVC下成功编译(和工作),但是gcc抱怨语法无效:

.hpp:20: error: expected nested-name-specifier before ‘_myPair’
.hpp:20: error: two or more data types in declaration of ‘_myPair’

我做错了什么?

3 个答案:

答案 0 :(得分:21)

那里不需要typename,因此不允许。

MSVC在实际使用之前不会正确解析模板,因此直到稍后才会发现某些错误。

答案 1 :(得分:5)

“预期的嵌套名称说明符”表示在typename关键字之后,您需要使用模板参数的某个嵌套名称,例如typedef typename Key::iterator ...。在您的情况下,您不必使用typename

答案 2 :(得分:4)

typedef pair<const unsigned int, Key> /*typename*/ _myPair;
                                      ^^^^^^^^^^^^ not needed

请参阅gcc-4.5 output here。 (它适用于myownmap class或函数