使用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