可以使用迭代器來獲取map的key值。以下是一個示例代碼:
#include <iostream>
#include <map>
int main() {
std::map<int, std::string> myMap;
myMap[1] = "apple";
myMap[2] = "banana";
myMap[3] = "orange";
// 使用迭代器遍歷map
std::map<int, std::string>::iterator iter;
for (iter = myMap.begin(); iter != myMap.end(); ++iter) {
int key = iter->first;
std::cout << "Key: " << key << std::endl;
}
return 0;
}
這段代碼創(chuàng)建了一個map對象,并插入了三組鍵值對。然后使用迭代器遍歷map,通過iter->first
可以獲取當前迭代器位置處的鍵值對的鍵。