我使用operator()遇到了这段代码。我以前从未见过这个(我见过+,>, - <<)。有人可以解释何时应该使用它以及应该如何使用它?
class sortResults
{
public:
bool operator() (Result const & a, Result const & b);
};
答案 0 :(得分:5)
这被称为仿函数(不要与函数编程语言中的仿函数混淆)。
它模仿一个函数,可以在标准库中的函数中使用:
std::vector<Result> collection;
// fill with data
// Sort according to the () operator result
sortResults sort;
std::sort(collection.begin(), collection.end(), sort);
与简单函数相比,一个很好的优点是,它可以保存状态,变量等。您可以与闭包并行(如果响铃)
struct GreaterThan{
int count;
int value;
GreaterThan(int val) : value(val), count(0) {}
void operator()(int val) {
if(val > value)
count++;
}
}
std::vector<int> values;
// fill fill fill
GreaterThan gt(4);
std::for_each(values.begin(), values.end(), gt);
// gt.count now holds how many values in the values vector are greater than 4
答案 1 :(得分:1)
这意味着可以调用sortResults
实例,就像采用两个Result
参数的函数一样:
sortResults sr;
Result r1, r2;
bool b = sr(r1, r2);
这样的类被称为“仿函数”。大多数标准库算法都有重载,需要使用一元或二元仿函数。