声明一个std :: map迭代器会导致一个奇怪的错误

时间:2011-05-14 05:29:03

标签: c++ stl map std

我只是想声明一个map迭代器但是我收到一个编译错误,说“预期;在它之前”

我相信这是因为我没有包含整个std命名空间(使用命名空间std;)但我故意不想包含所有这些。

我的代码:

#include <map>
#include <string>

template <class Object>
class Cont
{
    public:
       Cont() {}
       Object* get( unsigned int nID )
       {
           std::map <unsigned int, Object*>::iterator it = m.begin(); // error here "expected ; before it" what is this error?

           for ( ; it != m.end(); it++ ) 
           {
               if ( (*it).second->ID == nID ) { return (*it).second; }
           }

           return NULL;
       }

       std::map <unsigned int, Object*> m;
};

我已经尝试了这个但是它不起作用:

std::map <unsigned int, Object*>::std::iterator it = m.begin();

3 个答案:

答案 0 :(得分:10)

如果我没有弄错,因为您使用的是模板参数,则需要在迭代器声明前添加typename前缀。

typename std::map <unsigned int, Object*>::iterator it = m.begin();

答案 1 :(得分:1)

您的编译器和标志设置是什么?我能够建立这个。

// test.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"

#include <map>
#include <string>

class Foo
{
public:
    int ID;
};

template <class Object> class Cont
{
    public:
       Cont() {}
       Object* get( unsigned int nID )
       {
           std::map <unsigned int, Object*>::iterator it = m.begin(); // error here "expected ; before it" what is this error?

           for ( ; it != m.end(); it++ ) 
           {
               if ( (*it).second->ID == nID ) { return (*it).second; }
           }

           return NULL;
       }

       std::map <unsigned int, Object*> m;
};

int _tmain(int argc, _TCHAR* argv[])
{
    Cont<Foo> c;
    c.get( 2 );
    return 0;
}

答案 2 :(得分:0)

你没有说你正在使用什么编译器,但只是通过将其剪切并粘贴到一个新文件中,它在VS2010中编译得很好。您当然不需要using namespace std; ....

(并且你在迭代器之前放置另一个std ::的皱纹很有创意,但是不正确。:-)你指定地图类模板位于命名空间std ::中,迭代器是一种类型嵌套在地图模板中。)