可能重复:
Where and why do I have to put the “template” and “typename” keywords?
我有一个类似下面的模板类
template <class Key, class Object>
class TObjectRegistery
{
public:
typedef map<const Key, Object*> ObjectMap;
void AddObject(Object *obj){
objectMap_[obj.code()] = obj;
}
private:
ObjectMap objectMap_;
}
我想在TFactory
之外运行迭代,然后我想在类中添加两个成员函数。
ObjectMap::iterator xbegin(){
return objectMap_.begin();
}
但是我得到了一个我错过的错误;在xbegin之前,如undefine ObjectMap :: iterator
"missing ';' before identifier 'xbegin'"
为什么会这样? 我该怎么办呢? 如果这种好方法可以在课堂上进行迭代?
答案 0 :(得分:5)
在ObjectMap之前还需要typename关键字,因为它是模板参数的派生类型:
typename ObjectMap::iterator xbegin(){
return objectMap_.begin();
}