亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
漳平市| 芒康县| 桐梓县| 喜德县| 丽江市| 油尖旺区| SHOW| 霍邱县| 城市| 华安县| 龙游县| 花垣县| 淮北市| 余庆县| 英超| 大冶市| 保山市| 酉阳| 陈巴尔虎旗| 蒙自县| 台东市| 青浦区| 鹿邑县| 会同县| 静安区| 历史| 西乡县| 册亨县| 嘉禾县| 河津市| 军事| 鹤山市| 张家口市| 康马县| 桓台县| 福建省| 灵台县| 绥滨县| 罗定市| 伊宁市| 连云港市|