类模板
<functional>

std::pointer_to_unary_function

template <class Arg, class Result> class pointer_to_unary_function;
从函数指针生成一元函数对象类
从接受单个参数 Arg 类型并返回 Result 类型值的函数指针生成一元函数对象类。

pointer_to_unary_function通常用作一个类型。函数 ptr_fun (也在头文件 <functional> 中定义) 可用于直接构造此类型的对象。

该类派生自unary_function,通常定义为

1
2
3
4
5
6
7
8
9
10
template <class Arg, class Result>
  class pointer_to_unary_function : public unary_function <Arg,Result>
{
protected:
  Result(*pfunc)(Arg);
public:
  explicit pointer_to_unary_function ( Result (*f)(Arg) ) : pfunc (f) {}
  Result operator() (Arg x) const
    { return pfunc(x); }
};

成员

构造函数
从接受单个参数 Arg 类型并返回 Result 类型值的函数指针构造一元函数对象类。
operator()
成员函数,接受单个参数,并返回调用构造时使用的函数指针的结果。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// pointer_to_unary_function example
#include <iostream>
#include <functional>
#include <algorithm>
#include <cmath>
using namespace std;

int main () {
  pointer_to_unary_function <double,double> LogObject (log);
  double numbers[] = {10.0, 20.0, 40.0, 80.0, 160.0};
  double logs[5];
  transform (numbers, numbers+5, logs, LogObject);
  for (int i=0; i<5; i++)
    cout << logs[i] << " ";
  cout << endl;
  return 0;
}

可能的输出

2.30259 2.99573 3.68888 4.38203 5.07517


另见