gpt4 book ai didi

c++ - 使用带有数组的 find_if() 的代码段出错

转载 作者:行者123 更新时间:2023-11-30 01:04:59 27 4
gpt4 key购买 nike

这是我的代码片段:

#include<iostream>
#include<cstring>
#include<algorithm>
using namespace std;


bool next(int j)
{
return(j<3);
}

int main()
{
......
cin>>m;
int h[m];
memset(h, 0, sizeof(h));
.......

int *p;
p = find_if(h, h+m, next);
......
}

编译时出现以下错误:

no matching function for call to ‘find_if(int*, int*, )’

template _IIter std::find_if(_IIter, _IIter, _Predicate)

template argument deduction/substitution failed:

couldn't deduce template parameter ‘_Predicate’

最佳答案

你是 C++ 有点神秘的查找规则的受害者!

因为您没有限定 next,并且因为您编写了 using namespace std,并且因为 std::next 存在,所以 the compiler considers std::next a candidate (even though the lookup then fails) and nothing else !

限定你的函数:

find_if(h, h+m, ::next);
// ^^

代表您的代码的测试用例:

#include <algorithm>
using namespace std;

bool next(int j)
{
return (j<3);
}

int main()
{
int h[5] = {};
const size_t m = 2;
find_if(h, h+m, next);
}

( live demo )

并固定:

#include <algorithm>
using namespace std;

bool next(int j)
{
return (j<3);
}

int main()
{
int h[5] = {};
const size_t m = 2;
find_if(h, h+m, ::next);
}

( live demo )

关于c++ - 使用带有数组的 find_if() 的代码段出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49109115/

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