我有一个班级比尔,我在这个班级写了这个函子
//functor
bool operator==(const Bill& other) const;
void operator()(int x) { sumCost -= x; }
我不知道的是,如何在main
中使用它。
感谢您的帮助!
答案 0 :(得分:3)
在main中使用它将与在任何其他函数中使用相同:
int main()
{
Bill b;
b( 123 );
return 0;
}