我使用匿名函数(也称为lambda)作为find_if的条件。显然我可以为它做一个特殊的类,但C ++ 11说我可以使用匿名函数。 但是,为了便于阅读和理解,我决定将匿名函数保存在作为函数输入的局部变量中。
不幸的是,我收到错误:
no match for call to '(std::function<bool(Point*, Point*)>) (Point*&)'
note: candidate is:
note: _Res std::function<_Res(_ArgTypes ...)>::operator()(_ArgTypes ...) const [with _Res = bool; _ArgTypes = {Point*, Point*}]
note: candidate expects 2 arguments, 1 provided
我做错了什么?所谓的候选人对我来说是希腊人。 我试图将lambda直接放在find_if-invokement中,但那也没有用。
#include <vector>
#include <function>
#include <algorithm>
using std::vector;
using std::function;
using std::find_if;
Point* Path::getPoint( int x, int y )
{
function<bool( Point*, Point* )> howToFind = [&x, &y]( Point* a, Point* b ) -> bool
{
if( a->getX() == x )
{
return true;
}
else if( a->getX() < b->getX() )
{
return true;
}
else
{
return false;
}
};
vector<Point*>::iterator foundYa = find_if( this->points.begin(), this->points.end(), howToFind );
if( foundYa == points.end() )
{
return nullptr;
}
return *foundYa;
}
<小时/> 在cnicutar的有用答案之后,代码的更正部分。我不得不在其他地方重构我的代码,但这超出了这个问题的范围:
function<bool( Point* )> howToFind = [&x, &y]( Point * a ) -> bool
{
if( a == nullptr )
{
return false;
}
else
{
if( a->getX() == x && a->getY() == y )
{
return true;
}
else
{
return false;
}
}
};
答案 0 :(得分:2)
根据cppreference ,该功能必须为UnaryPredicate
,即必须使用一个参数。
template< class InputIt, class UnaryPredicate >
InputIt find_if( InputIt first, InputIt last,
UnaryPredicate q );