所以我有一张这样的地图:
map<long, MusicEntry> Music_Map;
MusicEntry 包含(名称、艺术家、大小和添加日期)的字符串
我的问题是如何打印,如何打印出地图中的所有数据?我试过做...
for(auto it = Music_Map.cbegin(); it!= Music_Map.cend(); ++it)
cout << it-> first << ", " << it-> second << "\n";
我认为问题正在发生,它无法编译和读取第二个又名 MusicEntry ..