解决方法
使用std :: map.
例如,要从整数映射到std :: string:
#include <map> #include <string> #include <iostream> int main() { std::map<int,std::string> my_map; my_map[3] = "hello"; my_map[4] = "world"; std::cout << my_map[3] << " " << my_map[4] << std::endl; return 0; }