gpt4 book ai didi

c++ - 如何查找std::map中是否存在元素?

转载 作者:IT老高 更新时间:2023-10-28 13:23:55 28 4
gpt4 key购买 nike

我的用例:

map<string, Car> cars;
bool exists(const string& name) {
// somehow I should find whether my MAP has a car
// with the name provided
return false;
}

您能否建议用 C++ 实现它的最佳和最优雅的方法?谢谢。

最佳答案

return cars.find(name) != cars.end();

关于c++ - 如何查找std::map中是否存在元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2781899/

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