算数仿函数-相加

#include <iostream>
#include <functional>
using namespace std;

int main()
{
   plus<int> p;
   cout << p(10, 20) << endl;

   return 0;
}
$ ./a.out
30
posted @ 2022-07-31 10:58  thomas_blog  阅读(5)  评论(0编辑  收藏  举报