gpt4 book ai didi

c++ - 关于 map::erase 和 map::count

转载 作者:太空宇宙 更新时间:2023-11-03 10:26:14 24 4
gpt4 key购买 nike

我只是有一个关于 map::count() 和 map::erase() 使用的快速问题。我将它们与 std::string 一起使用,但想知道我是否需要使用 string::c_str()。例如,我的代码当前显示为:

void Person::removeFriend(std::string first, std::string last){
std::string name = (first + last);
//checks to ensure the friend exists in the user's friend list
if (_friends.count(name) == 1){
_friends.erase(name);
}
}

那么我的问题是,它应该实际显示为:

void Person::removeFriend(std::string first, std::string last){
std::string name = (first + last);
//checks to ensure the friend exists in the user's friend list
if (_friends.count(name.c_str()) == 1){
_friends.erase(name.c_str());
}
}

此外,我想这也适用于 map::insert() 。我只知道使用 std::string 打开文件时的这种用法。提前非常感谢任何和所有建议!

最佳答案

不,没有理由在这里使用c_str。并且在使用 erase 之前不需要检查是否存在。你的功能可以是这样的:

void Person::removeFriend(const std::string& first, const std::string& last){
std::string name = (first + last);
_friends.erase(name);
}

...甚至:

void Person::removeFriend(const std::string& first, const std::string& last){
_friends.erase(first + last);
}

关于c++ - 关于 map::erase 和 map::count,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34278106/

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