我有一个Playlist
类,它有一个向量,Tracks
每个Track
都有一个multimap<long, Note>
as 数据成员。
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
each Track
。但是从这部分开始,所有的输出都停止了。所以我只能看到第一首曲目的名称。之后的任何 cout 都没有显示,编译器也没有给我任何错误。甚至 try catch 块内的 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 ¬e) {
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);
任何想法为什么迭代器不起作用?