gpt4 book ai didi

c++ - multimap 迭代器不工作

转载 作者:搜寻专家 更新时间:2023-10-31 01:15:21 25 4
gpt4 key购买 nike

我有一个 Playlist具有 Tracks vector 的类每个 Track有一个 multimap<long, Note>作为数据成员。

class Track {
private:
multimap<long, Note> noteList;
}

使用迭代器访问轨道没有问题,所以这部分工作正常:

vector<Track>::iterator trackIT;
try{
for(noteIT = trackIT->getNoteList().begin(); noteIT != trackIT->getNoteList().end(); noteIT++){
cout << "---" << noteIT->second.getName() << endl;
}
}catch (int e){
cout << "exception #" << e << endl;
}

我接下来要做的是迭代 Notes每个 Track .但是从这部分开始,所有输出都停止了。所以我只能看到第一首轨道名称。之后的任何 cout 都没有显示,编译器也没有给我任何错误。甚至 try catch block 中的 cout 也不工作..

vector<Track>::iterator trackIT;
multimap<long, Note>::iterator noteIT;
for(trackIT = this->playlist.getTracklist().begin(); trackIT < this->playlist.getTracklist().end(); trackIT++){
cout << trackIT->getTrackName() << endl;

for(noteIT = trackIT->getNoteList().begin(); noteIT != trackIT->getNoteList().end(); noteIT++){
cout << "---" << noteIT->second.getName() << endl;
}
}
cout << "random cout that is NOT shown" << endl; // this part doesn't show up in console either

此外,我用来添加 Note 对象的 Track 类中的方法如下所示:

void Track::addNote(Note &note) {
long key = 1000009;
this->noteList.insert(make_pair(key, note));
}

// I'm adding the notes to the track like this:
Note note1(440, 100, 8, 1, 1);
note1.setName("note1");
synthTrack.addNote(note1);

知道为什么迭代器不起作用吗?

最佳答案

改变

noteIT < trackIT->getNoteList().end()

noteIT != trackIT->getNoteList().end()

并非所有迭代器都支持小于/大于比较。

如果你有 c++11,你可以使用基于范围的 for 循环:

for (Note& note : trackIT->getNoteList())

或者你可以使用 BOOST_FOREACH

BOOST_FOREACH (Note& note, trackIT->getNoteList())

关于c++ - multimap 迭代器不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10212881/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com