gpt4 book ai didi

c++ - 如何将函数体转换为 lambda?

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

我想将函数体转换为 lambda。但我不知道如何将此 if 语句实现到 lambda 中。我也不知道什么是最好的。使用 std::find_if、std::find 还是其他东西更好。

void Inventory::RemoveFromInventory(std::string  item)
{
//--bool to check if an item is in the inventory
bool found = false;

for (std::list<Item>::iterator i = m_Inventory.begin(); i != m_Inventory.end(); i++)
{
if (i->GetName() == item)
{
m_Inventory.erase(i);
found = true;
break;
}
}
if (found == false)
{
std::cout << "item not in inventory!" << std::endl;
}
}

有人可以帮我解决这个转换问题吗?

最佳答案

所以你想搜索一个验证条件的项目,检查你是否找到它,然后删除它。这是 std::find_if 的用例:

void Inventory::RemoveFromInventory(std::string item)
{
auto const foundAt = std::find_if(
begin(m_Inventory),
end(m_Inventory),
[&](Item const &i) { return i.GetName() == item; }
);

if(foundAt == end(m_Inventory)) {
std::cout << "item not in inventory!\n";
} else {
m_Inventory.erase(foundAt);
}
}

关于c++ - 如何将函数体转换为 lambda?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43652880/

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