gpt4 book ai didi

c++ - 每个的附加条件

转载 作者:行者123 更新时间:2023-11-30 00:52:35 25 4
gpt4 key购买 nike

我想知道:是否有可能为每个条件添加额外的条件?我在想类似的事情:

int i=0;
for(auto &it : list; i++)
if(it.ID == 25)
return i;

for(auto &it : list, int i=0; i++)
if(it.ID == 25)
return i;

最佳答案

你可以使用std::find_if:

const auto position = std::find_if(list.cbegin(), list.cend(), []((decltype(*list.cbegin()) value)
{
return value.ID == 25;
});
return position - list.cbegin();

(已更新,现在独立于容器 value_type)

关于c++ - 每个的附加条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18778972/

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