溫馨提示×

c++怎么獲取map的key值

c++
小億
443
2023-12-22 22:03:11
欄目: 編程語言

可以使用迭代器來獲取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可以獲取當前迭代器位置處的鍵值對的鍵。

0