gpt4 book ai didi

c++ - 放入 map 时 std::string 的范围

转载 作者:行者123 更新时间:2023-11-27 23:59:57 25 4
gpt4 key购买 nike

我是 C++ 领域的新手,当 std::string 被插入到 std::map 时,我对它的生命周期有点困惑。

例如:

void loadMap(std::map<string, int> &myMap)
{
int num = rand();
myMap[to_string(num) + "_xyz"] = num;
}

void main(int argc, char** argv)
{
std::map<string, int> myMap;
loadMap(myMap);

//Is the entry I just added to the map in loadMap still safe in there?
//i.e., is the key, which is an std::string, still around?
//Or its lifetime's ended?
}

我做了一些测试,SEEMS 没问题,但我不确定是否会一直如此。也许我很幸运,std::string 所在的内存没有被触及。

最佳答案

以下操作将创建一个 std::string 右值

to_string(num) + "_xyz"

因为 mapKey 类型是 std::string by value 那么这个右值将有效被移动到 map 中。在这种情况下你是安全的。该 map 现在“拥有”该字符串。因此字符串的生命周期与 main

中映射的生命周期相同

关于c++ - 放入 map 时 std::string 的范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39916566/

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