const_mem_fun1_t 类

允许 const 成员函数采用作为二进制函数将调用对象的单个参数,当初始化与指针参数的适配器类。

template<class Result, class Type, class Arg>
   class const_mem_fun1_t
      : public binary_function<const Type *, Arg, Result> 
   {
   explicit const_mem_fun1_t( Result ( Type::* _Pm )( Arg ) const );
   Result operator()(
      const Type* _Pleft, 
      Arg _Right
   ) const;
   };

参数

  • _Pm
    为类转换是 类型 的成员函数的指针到函数对象。

  • _Pleft
    const 对象的 _Pm 成员函数调用。

  • _Right
    为 _Pm的参数。

返回值

可容纳的二进制函数。

备注

类模板 _Pm存储副本,必须是指向类 类型的成员函数中,私有成员对象。 它定义了其成员函数 operator() 返回为 (_Pleft->* *Pm)(*Right) const

示例

通常不直接使用 const_mem_fun1_t 构造函数;Helper 函数 mem_fun 来改写成员函数。 为有关如何参见 mem_fun 适配器使用成员函数。

要求

标头: <起作用的>

命名空间: std

请参见

参考

C++ 标准库中的线程安全

标准模板库