다음을 통해 공유


mem_fun_ref_t 클래스

단항 함수 개체로 호출되어 참조 인수를 사용하여 초기화될 때 인수를 취하지 않는 non_const 멤버 함수를 사용할 수 있는 어댑터 클래스

template<class Result, class Type>
   class mem_fun_ref_t : public unary_function<Type, Result> {
      explicit mem_fun_ref_t(
         Result ( Type::*_Pm )( ) 
      );
      Result operator()( Type& _Left ) const;
   };

매개 변수

  • _Pm
    A pointer to the member function of class Type to be converted to a function object.

  • _Left
    The object that the _Pm member function is called on.

반환 값

An adaptable unary function.

설명

The template class stores a copy of _Pm, which must be a pointer to a member function of class Type, in a private member object. It defines its member function operator() as returning (_Left.* _Pm)( ).

예제

The constructor of mem_fun_ref_t is not usually used directly; the helper function mem_fun_ref is used to adapt member functions. See mem_fun_ref for an example of how to use member function adaptors.

요구 사항

헤더: <기능>

네임스페이스: std

참고 항목

참조

C++ 표준 라이브러리의 스레드 보안

표준 템플릿 라이브러리