gpt4 book ai didi

c++ - 在 map 中推回

转载 作者:行者123 更新时间:2023-11-30 05:43:45 24 4
gpt4 key购买 nike

有没有可能使用push_back()在 map 上?

我想做一个map < int, vector<string>>并填写 vector在一个带有字符串的循环中。

它应该看起来像这样:

map[int] = vector.push_back(string);

最佳答案

如果你想push_backmap[N]返回的vector,只需使用:

//assuming
std::map<int, std::vector<std::string>> my_map;
int N;
std::string my_string;

my_map[N].push_back(my_string);

关于c++ - 在 map 中推回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30104787/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com