c – 嵌套名称说明符

前端之家收集整理的这篇文章主要介绍了c – 嵌套名称说明符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个代码如:
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’

我在做错什么?

解决方法

不需要类型名称,因此不允许.

MSVC不要正确解析模板,直到它们被实际使用,所以一直没有找到错误.

猜你在找的C&C++相关文章