中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

C++的std::map怎么使用

c++
小億
112
2023-12-21 07:31:21
欄目: 編程語言

使用std::map需要包含頭文件。std::map是一個關聯容器,用于存儲鍵值對,其中的鍵是唯一的。

下面是std::map的基本用法示例:

#include <iostream>
#include <map>

int main() {
    // 創建一個std::map對象
    std::map<int, std::string> students;

    // 插入鍵值對
    students.insert(std::make_pair(1, "Alice"));
    students.insert(std::make_pair(2, "Bob"));
    students.insert(std::make_pair(3, "Charlie"));

    // 通過鍵訪問值
    std::cout << "Student with key 1: " << students[1] << std::endl;

    // 修改值
    students[2] = "Ben";

    // 遍歷std::map
    std::cout << "All students:" << std::endl;
    for (const auto& student : students) {
        std::cout << "Key: " << student.first << ", Value: " << student.second << std::endl;
    }

    // 檢查鍵是否存在
    if (students.count(3) > 0) {
        std::cout << "Student with key 3 exists" << std::endl;
    }

    // 刪除鍵值對
    students.erase(2);

    return 0;
}

這個示例演示了如何創建std::map對象、插入鍵值對、訪問和修改值、遍歷std::map以及刪除鍵值對。注意,通過[]操作符訪問不存在的鍵會插入一個新的鍵值對。

上述示例的輸出應為:

Student with key 1: Alice
All students:
Key: 1, Value: Alice
Key: 2, Value: Ben
Key: 3, Value: Charlie
Student with key 3 exists

0
鹿泉市| 保靖县| 布尔津县| 双峰县| 巴彦县| 尉氏县| 新邵县| 台江县| 镇安县| 苍溪县| 习水县| 辉县市| 瑞丽市| 益阳市| 江都市| 都兰县| 余干县| 泰宁县| 雷州市| 玉田县| 山东省| 施秉县| 富平县| 木兰县| 含山县| 犍为县| 兴海县| 琼中| 阿拉善左旗| 拉孜县| 体育| 土默特右旗| 汤阴县| 平湖市| 景德镇市| 东明县| 苍溪县| 汕尾市| 蓬莱市| 吉林市| 丰宁|