91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
岱山县| 金门县| 肇源县| 察隅县| 湟源县| 平罗县| 山丹县| 江门市| 定州市| 陆河县| 沧源| 上饶市| 嘉义县| 宣城市| 武清区| 武邑县| 北安市| 诸暨市| 长泰县| 镇平县| 红河县| 扶风县| 临桂县| 崇义县| 霞浦县| 泗水县| 新巴尔虎右旗| 公主岭市| 南京市| 宁城县| 贵定县| 临沭县| 嘉峪关市| 三亚市| 卢湾区| 花莲县| 赤壁市| 沙田区| 新野县| 塔城市| 新巴尔虎右旗|