算数仿函数-取反

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

int main()
{
   negate<int> n;
   cout << n(10) << endl;

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