摘要: 我们对map中的修改value操作可以是如下的: auto myMap = std::map<std::string, int>{ {"one", 1}, {"two", 2}, {"three", 3} }; myMap.find("two")->second = 22; 但是如果想修改key操作 阅读全文
posted @ 2020-09-06 00:03 MrYun 阅读(12475) 评论(0) 推荐(3) 编辑