在进行仿函数的函数调用重载时,可以不确定具体对象,而只进行一次使用,不需要特定的对象实体存在。 #include <iostream>using namespace std;class add {public: int operator()(int a, int b) { return a + b; };};int main() { cout << add()(1, 2) << endl; return 0;} 匿名函数的特点是使用后立即被释放,只使用一次,不需要对象。