Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个成员 L ,它是我想在 const 函数中使用的整数对列表。因此,我不应该修改 L,但我不知道如何遍历 L 以读取其内容(而不是修改它们)。
编译器一直说存在转换问题。
假设您正在使用std::list<std::pair<int,int>>您需要std::list<std::pair<int,int>>::const_iterator用作迭代器的类型。
std::list<std::pair<int,int>>
std::list<std::pair<int,int>>::const_iterator