溫馨提示×

C++ map.find與auto關鍵字的結合使用

c++
小樊
134
2024-06-13 17:05:42
欄目: 編程語言

在C++中,可以使用map.find方法來查找map中是否存在指定的鍵值對,如果存在,則返回指向該鍵值對的迭代器,否則返回map.end()。結合auto關鍵字可以簡化代碼,并避免顯式指定迭代器的類型。

下面是一個示例代碼,演示了如何使用map.findauto結合使用:

#include <iostream>
#include <map>

int main() {
    std::map<int, std::string> myMap = {{1, "apple"}, {2, "banana"}, {3, "cherry"}};

    int key = 2;

    auto it = myMap.find(key);

    if (it != myMap.end()) {
        std::cout << "Key " << key << " found, value is " << it->second << std::endl;
    } else {
        std::cout << "Key " << key << " not found" << std::endl;
    }

    return 0;
}

在這個示例中,我們首先定義了一個std::map對象myMap,然后使用map.find方法查找鍵為2的鍵值對。使用auto關鍵字聲明it,讓編譯器自動推導出it的類型為std::map<int, std::string>::iterator。最后根據(jù)it是否等于end()來判斷是否找到了指定的鍵值對。

0