1

我不知道出了什么问题,但我无法访问我的迭代器所指的对象的方法。这就是我所拥有的:

multimap<long, Note>::iterator notesIT;
notesIT = trackIT->getNoteList().lower_bound(this->curMsr * 1000000);

while(notesIT->first / 1000000 == 1){
    cout << notesIT->first.getStartTime() << endl; // error on this line
    notesIT++;
}

我收到此错误:

error: request for member 'getStartTime' in 'notesIT. std::_Rb_tree_iterator<_Tp>::operator-> [with _Tp = std::pair<const long int, Note>]()->std::pair<const long int, Note>::first', which is of non-class type 'const long int'
4

2 回答 2

4

也许:

notesIT->second.getStartTime()
于 2012-04-16T00:10:52.140 回答
0

编译器告诉你

notesIT->first.getStartTime()

无效,因为您试图getStartTime()调用int. 显然,你的意思是在 a 上调​​用它Node,所以选择迭代器指向的对的第二部分(产生Node迭代器的部分):

cout << notesIT->second.getStartTime() << endl;
于 2012-04-16T00:14:48.107 回答