我想使用非静态函数作为谓词。不幸的是,我收到一个错误,抱怨它是非静态的,我不确定如何处理这个问题。
错误:
错误:在没有object参数的情况下调用非静态成员函数 songs_.remove_if(Song :: operator()(s));
以下是我与remove_if结合使用的非静态函数:
bool Song::operator()(const Song& s) const
{
SongCallback();
string thisArtist = Song::artist_;
string thisTitle = Song::title_;
// check if songs match title AND artists
if(Song::operator==(s))
{
return true;
// wild card artist or title
}
else if(thisArtist == "" || thisTitle == "")
{
return true;
// either artist or title match for both songs
// }
// else if(thisArtist == s.GetArtist() or thisTitle == s.GetTitle()){
// return true;
// no matches
}
else
{
return false;
}
}
并在另一个函数中我试图调用remove_if使用该函数作为谓词,如下所示:
Song s = Song(title,artist);
songs_.remove_if(s.operator()(s) );
所以我的问题是,如何在没有抱怨它是非静态函数的情况下正确调用此运算符?我已经阅读过关于类实例的指针,但这是我能找到的最接近的东西。
答案 0 :(得分:3)
试试这个:
Song s(title, artist);
songs_.remove_if([&s](const Song& x) { return x(s); });
但是,将比较逻辑作为重载函数调用运算符的一部分是非常奇怪的。如果我不得不猜测我会说你可能想出一个更清洁的设计,例如:
songs_.remove_if([&s](const Song& x) {
return laxly_equal_with_callback(x, s);
});