C++ std::map用法簡介

#include "map" //引入頭文件 初始化:c++ std::map <int, std::string> _map1; //初始化 //c++11中引入的,能夠直接在初始化時賦值 std::map <int, std::string> _map = { {0,"11"}, {2,"22"}, {3,"33"}, }; 插入:函數 // 若是已經存在鍵值2
相關文章
相關標籤/搜索