我已经定义了一个std::list
但我不知道为什么我不能使用迭代器
#include <iostream>
#include <list>
using namespace std;
class foo {
public:
static const int N = 10;
list<int *> myList[ N ];
void bar()
{
list<int *>::iterator it = myList.begin(); //ERROR
}
};
int main()
{
foo a;
a.bar();
return 0;
}