主要的仿函数的例子

时间:2014-07-17 17:04:54

标签: c++ functor

我有一个班级比尔,我在这个班级写了这个函子

//functor 

    bool operator==(const Bill& other) const;

    void operator()(int x) { sumCost -= x; }

我不知道的是,如何在main中使用它。

感谢您的帮助!

1 个答案:

答案 0 :(得分:3)

在main中使用它将与在任何其他函数中使用相同:

int main()
{
    Bill b;
    b( 123 );
    return 0;
}